Closed
Bug 2363
Opened 26 years ago
Closed 26 years ago
[PP]:All Javascript code is removed from html!
Categories
(Core :: DOM: HTML Parser, defect, P1)
Tracking
()
VERIFIED
FIXED
M2
People
(Reporter: phillip, Assigned: kmcclusk)
Details
on builds 99011213 and 99011313 all platforms, all inline javascript code
is snipped out (i presume by the parser.)
simple testcase:
<html>
<head>
<script type="text/javascript">
document.writeln("look at me!<br>");
</script>
</head>
<body>
<script type="text/javascript">document.writeln("I'm a wafflecone!");
</script>
</body>
</html>
expected result:
"look at me!
I'm a wafflecone!"
actual result:
No javascript happens on seamonkey if you load this testcase.
doing a view source, you get the following file:
<html>
<head>
<script type="text/javascript"></</script>>
</head>
<body>
<script type="text/javascript"></</script>>
</body>
</html>
this is pretty big.
Summary: All Javascript code is removed from html! → [PP]:All Javascript code is removed from html!
phillip, looks like rickg checked in a fix per the bug history here (right
rickg?) Can we verify with 01/16 build?
Status: RESOLVED → REOPENED
OS: All → Linux
Hardware: All → PC
verified on build 99011512 on NT and Macos.
Still broken on linux (RH5.2), so i'm reopening and changing
the platform and os to PC, Linux.
Kevin -- since this works on PC, I'm expecting that theres a js problem on Unix.
Can you please verify?
Status: NEW → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → FIXED
i hereby un-reopen this bug on build 99012012 on rh52, nt40 and macos85
You need to log in
before you can comment on or make changes to this bug.
Description
•