| Index: LayoutTests/fast/events/mouseover-mouseout.html
|
| diff --git a/LayoutTests/fast/events/mouseover-mouseout.html b/LayoutTests/fast/events/mouseover-mouseout.html
|
| index 6d1906d9c45782de7a2bc52096e95a218366c0a2..61c23e6384a1f8381e85c79662ff9013a7fece48 100644
|
| --- a/LayoutTests/fast/events/mouseover-mouseout.html
|
| +++ b/LayoutTests/fast/events/mouseover-mouseout.html
|
| @@ -33,15 +33,15 @@ Mouse events vs. DOM manipulation.</p>
|
| <!-- 2: Hide an element under the mouse -->
|
| <div style='height: 50; width: 50; background:white;top:100;left:150; position:absolute;' id='t2_2'
|
| onMouseOver="logMouseEvent(event)"
|
| - onMouseOut="logMouseEvent(event); document.getElementById('t2_2').style.backgroundColor = 'gray'">2</div>
|
| + onMouseOut="logMouseEvent(event); document.getElementById('t2_2').style.backgroundColor = 'gray'">2 </div>
|
| <div style='height: 50; width: 50; background:orange;top:100;left:150; position:absolute;' id='t2_1'
|
| onMouseOver="logMouseEvent(event); document.getElementById('t2_1').style.display = 'none'"
|
| - onMouseOut="logMouseEvent(event)">2</div>
|
| + onMouseOut="logMouseEvent(event)">2 </div>
|
|
|
| <!-- 3: Move the element under the mouse into another document -->
|
| <div style='height: 50; width: 50; background:white;top:100;left:200; position:absolute;' id='t3_2'
|
| onMouseOver="logMouseEvent(event)"
|
| - onMouseOut="logMouseEvent(event); document.getElementById('t3_2').style.backgroundColor = 'gray'">3</div>
|
| + onMouseOut="logMouseEvent(event); document.getElementById('t3_2').style.backgroundColor = 'gray'">3 </div>
|
| <div style='height: 50; width: 50; background:yellow;top:100;left:200; position:absolute;' id='t3_1'
|
| onMouseOver="
|
| logMouseEvent(event);
|
| @@ -52,12 +52,12 @@ Mouse events vs. DOM manipulation.</p>
|
| newDoc.documentElement.appendChild(document.getElementById('t3_1'));
|
| }
|
| "
|
| - onMouseOut="logMouseEvent(event)">3</div>
|
| + onMouseOut="logMouseEvent(event)">3 </div>
|
|
|
| <!-- 4: Move the element under the mouse into another document, and append it -->
|
| <div style='height: 50; width: 50; background:white;top:100;left:250; position:absolute;' id='t4_2'
|
| onMouseOver="logMouseEvent(event)"
|
| - onMouseOut="logMouseEvent(event); document.getElementById('t4_2').style.backgroundColor = 'gray'">4</div>
|
| + onMouseOut="logMouseEvent(event); document.getElementById('t4_2').style.backgroundColor = 'gray'">4 </div>
|
| <div style='height: 50; width: 50; background:green;top:100;left:250; position:absolute;' id='t4_1'
|
| onMouseOver="
|
| logMouseEvent(event);
|
| @@ -68,18 +68,18 @@ Mouse events vs. DOM manipulation.</p>
|
| newDoc.documentElement.appendChild(document.getElementById('t4_1'));
|
| }
|
| "
|
| - onMouseOut="logMouseEvent(event)">4</div>
|
| + onMouseOut="logMouseEvent(event)">4 </div>
|
|
|
| <!-- 5: Remove the element under the mouse -->
|
| <div style='height: 50; width: 50; background:white;top:100;left:300; position:absolute;' id='t5_2'
|
| onMouseOver="logMouseEvent(event)"
|
| - onMouseOut="logMouseEvent(event); document.getElementById('t5_2').style.backgroundColor = 'gray'">5</div>
|
| + onMouseOut="logMouseEvent(event); document.getElementById('t5_2').style.backgroundColor = 'gray'">5 </div>
|
| <div style='height: 50; width: 50; background:blue;top:100;left:300; position:absolute;' id='t5_1'
|
| onMouseOver="
|
| logMouseEvent(event);
|
| document.body.removeChild(document.getElementById('t5_1'));
|
| "
|
| - onMouseOut="logMouseEvent(event)">5</div>
|
| + onMouseOut="logMouseEvent(event)">5 </div>
|
|
|
| <!-- 6: Enter a different document -->
|
| <iframe style='height: 50; width: 50; top:100;left:350; position:absolute; border-width:0' src='resources/mouseover-mouseout-iframe.html'
|
|
|