Closed
Bug 371622
Opened 18 years ago
Closed 16 years ago
onmouse over with several items
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: grenier-christian, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2
onmouseover="function1();function2()"
only the function1() is OK.
the function2() is not called.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Reporter | ||
Updated•18 years ago
|
Component: Page Info → Build Config
Version: unspecified → 2.0 Branch
Comment 1•18 years ago
|
||
This works for me with the following html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<title>mouseover test</title>
<script LANGUAGE="javascript" TYPE="text/javascript">
function f1() { addText('fail'); }
function f2() { addText('pass'); }
function addText(aText) {
var node = document.getElementById("p");
while(node.lastChild) { node.removeChild(node.lastChild); }
node.appendChild(document.createTextNode(aText));
}
</script>
</head>
<body>
<p id="p" onmouseover="f1();f2()">Mouseover text</p>
</body>
</html>
Can you attach a testcase showing the bug?
Component: Build Config → Page Info
Version: 2.0 Branch → unspecified
Updated•18 years ago
|
Component: Page Info → General
Product: Firefox → Core
QA Contact: page.info → general
Version: unspecified → 1.8 Branch
Even more simple code works fine here using Fx2 to trunk.
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•