| OLD | NEW |
| (Empty) |
| 1 <!-- Based on fast/repaint/no-caret-repaint-in-non-content-editable-element.html
--> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="resources/paint-invalidation-test.js"></script> | |
| 5 <script> | |
| 6 if (window.testRunner) { | |
| 7 testRunner.dumpAsText(); | |
| 8 // By definition, when caret browsing is enabled we always paint the caret. | |
| 9 // So, this test is only applicable when caret browsing is disabled because | |
| 10 // non-content-editable elements won't cause the caret to be drawn since the
y | |
| 11 // are not editable. | |
| 12 testRunner.overridePreference("WebKitEnableCaretBrowsing", false); | |
| 13 } | |
| 14 function paintInvalidationTest() | |
| 15 { | |
| 16 if (!window.eventSender) | |
| 17 return; | |
| 18 | |
| 19 var target = document.getElementById("target"); | |
| 20 eventSender.mouseMoveTo(target.offsetLeft, target.offsetTop); | |
| 21 eventSender.mouseDown(); | |
| 22 eventSender.mouseUp(); | |
| 23 } | |
| 24 window.onload = runPaintInvalidationTest; | |
| 25 </script> | |
| 26 </head> | |
| 27 <body> | |
| 28 <p>This tests that clicking on a non-content editable element does not cause
a repaint of it in whole or in part.</p> | |
| 29 <p id="target">This element is not content editable.</p> | |
| 30 </body> | |
| 31 </html> | |
| OLD | NEW |