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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/uievents/legacy-domevents-tests/approved/stopPropagation.deferred.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, 7 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.stopPropagation() deferred effect </title> 4 <title> Event.stopPropagation() deferred 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ActualResult.push(evt.currentTarget); 61 ActualResult.push(evt.currentTarget);
62 ActualListeners.push(i); 62 ActualListeners.push(i);
63 if ((1 == evt.eventPhase) && (TABLE == evt.currentTarget) && (0 == i)) 63 if ((1 == evt.eventPhase) && (TABLE == evt.currentTarget) && (0 == i))
64 { 64 {
65 evt.stopPropagation(); 65 evt.stopPropagation();
66 } 66 }
67 } 67 }
68 </script> 68 </script>
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698