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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/uievents/legacy-domevents-tests/approved/stopImmediatePropagation.effect.html

Issue 2018873002: Fix testharness paths in imported/wpt/* except dom and html. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 <title> Event.stopImmediatePropagation() immediate effect </title> 4 <title> Event.stopImmediatePropagation() immediate effect </title>
5 <script src="../../../../../resources/testharness.js"></script> 5 <script src="/resources/testharness.js"></script>
6 <script src="../../../../../resources/testharnessreport.js"></script> 6 <script src="/resources/testharnessreport.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <div id=log></div> 9 <div id=log></div>
10 10
11 <table id="table" border="1" style="display: none"> 11 <table id="table" border="1" style="display: none">
12 <tbody id="table-body"> 12 <tbody id="table-body">
13 <tr id="table-row"> 13 <tr id="table-row">
14 <td id="table-cell">Shady Grove</td> 14 <td id="table-cell">Shady Grove</td>
15 <td>Aeolian</td> 15 <td>Aeolian</td>
16 </tr> 16 </tr>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 ActualResult.push(evt.currentTarget); 62 ActualResult.push(evt.currentTarget);
63 ActualListeners.push(i); 63 ActualListeners.push(i);
64 if ((1 == evt.eventPhase) && (TABLE == evt.currentTarget) && (0 == i)) 64 if ((1 == evt.eventPhase) && (TABLE == evt.currentTarget) && (0 == i))
65 { 65 {
66 evt.stopImmediatePropagation(); 66 evt.stopImmediatePropagation();
67 } 67 }
68 } 68 }
69 </script> 69 </script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698