Closed
Bug 123887
Opened 24 years ago
Closed 22 years ago
View > Reload Source truncating inappropriately
Categories
(Other Applications Graveyard :: Venkman JS Debugger, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: pschwartau, Assigned: rginda)
Details
STEPS TO REPRODUCE
1. Save this script locally:
<HTML><SCRIPT>
s = "Hello";
s = "Hello";
s = "Hello";
s = "Hello";
function f(){}
</SCRIPT></HTML>
2. Load it in the browser and in Venkman
3. You see the entire script just fine
4. Now modify the script by pasting in some extra lines:
<HTML><SCRIPT>
s = "Hello";
s = "Hello";
s = "Hello";
s = "Hello";
d = new Date();
d = new Date();
d = new Date();
d = new Date();
function f(){}
</SCRIPT></HTML>
5. Save this script and reload it in the browser.
6. The script view in Venkman has not changed.
7. Double-click on the HTML file in the files window
8. The script view in Venkman has not changed.
9. In Venkman, hit View > Reload Source
10. The script view in Venkman changes to a truncation of the new script:
<HTML><SCRIPT>
s = "Hello";
s = "Hello";
s = "Hello";
s = "Hello";
d = new Date();
d = new Date();
EXPECT: to see the entire new script, up to and including |</HTML>|.
NOTE: the results can vary. If you happen not to see the bug at first,
try pasting in even more than four new lines of |d = new Date();|
| Reporter | ||
Updated•24 years ago
|
Summary: View > Reload Source not working properly → View > Reload Source truncating inappropriately
| Assignee | ||
Comment 1•22 years ago
|
||
I'm pretty sure I fixed this one a while ago :)
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Comment 2•21 years ago
|
||
See also bug 229024 (seems equivalent to this)
Updated•21 years ago
|
Product: Core → Other Applications
Updated•7 years ago
|
Product: Other Applications → Other Applications Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•