Closed
Bug 565284
Opened 15 years ago
Closed 12 years ago
Element that stop mousemove event propagation do not show title text.
Categories
(Core :: DOM: Events, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: kvg452, Unassigned)
References
()
Details
(Keywords: testcase)
Attachments
(1 file)
242 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; zh-CN; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.1; zh-CN; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
If I write the following code, the title won't display when move mouse over it.
the html:
<p id="p1" title="title here..">content here</p>
the javascript:
document.getElementById("p1").addEventListener("mousemove", function(e){
e.stopPropagation();
}, false);
and when you put the mouse cursor over the p element, no title will be displayed.
Reproducible: Always
Steps to Reproduce:
the html:
<p id="p1" title="title here..">content here</p>
the javascript:
document.getElementById("p1").addEventListener("mousemove", function(e){
e.stopPropagation();
}, false);
Actual Results:
when you put the mouse cursor over the p element, no title will be displayed.
Expected Results:
the title will display.
no
Component: General → DOM: Events
Keywords: testcase
Product: Firefox → Core
QA Contact: general → events
Mozilla/5.0 (Windows NT 5.1; rv:8.0a1) Gecko/20110813 Firefox/8.0a1
just confirming
Version: unspecified → Trunk
Comment 3•12 years ago
|
||
Testcase worksforme.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•