Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: LayoutTests/fast/events/mouseenter-mouseleave-crash.html

Issue 679863002: Revert "Prepare blink to unify definitions of load completion" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script> 5 <script>
6 window.jsTestIsAsync = true; 6 window.jsTestIsAsync = true;
7 7
8 document.addEventListener('DOMContentLoaded', function () { 8 document.addEventListener('DOMContentLoaded', function () {
9 document.querySelector('#inner3').addEventListener('mouseenter', fun ction () { 9 document.querySelector('#inner3').addEventListener('mouseenter', fun ction () {
10 document.write("Please don't crash under ASAN."); 10 document.write("Please don't crash under ASAN.");
11 document.close();
12 }); 11 });
13 12
14 if (window.testRunner) { 13 if (window.testRunner) {
15 eventSender.mouseMoveTo(1, 1); 14 eventSender.mouseMoveTo(1, 1);
16 debug("// Entering #inner3 (and therefore also #inner2)"); 15 debug("// Entering #inner3 (and therefore also #inner2)");
17 eventSender.mouseMoveTo(170,140); 16 eventSender.mouseMoveTo(170,140);
18 } 17 }
19 18
20 setTimeout(finishJSTest, 0); 19 setTimeout(finishJSTest, 0);
21 }); 20 });
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 </head> 59 </head>
61 <body> 60 <body>
62 <div id="outer"> 61 <div id="outer">
63 <div id="inner1"></div> 62 <div id="inner1"></div>
64 <div id="inner2"> 63 <div id="inner2">
65 <div id="inner3"></div> 64 <div id="inner3"></div>
66 </div> 65 </div>
67 </div> 66 </div>
68 </body> 67 </body>
69 </html> 68 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698