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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-capture-in-iframe.html

Issue 2098883002: Make PointerEvent an experimental web platform feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, fixed js path. Created 4 years, 5 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 <script src='../../../../../resources/js-test.js'></script> 1 <script src='../../../resources/js-test.js'></script>
2 <style> 2 <style>
3 iframe { 3 iframe {
4 width: 300px; 4 width: 300px;
5 height: 300px; 5 height: 300px;
6 top: 100px; 6 top: 100px;
7 left: 50px; 7 left: 50px;
8 border: 0; 8 border: 0;
9 position: absolute; 9 position: absolute;
10 background: green; 10 background: green;
11 } 11 }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 if (window.eventSender) { 129 if (window.eventSender) {
130 testRunner.waitUntilDone(); 130 testRunner.waitUntilDone();
131 window.onload = runTests; 131 window.onload = runTests;
132 } else 132 } else
133 debug('This test requires eventSender'); 133 debug('This test requires eventSender');
134 134
135 description("This test verifies touch and corresponding pointerevent targets ins ide and outside the iframe."); 135 description("This test verifies touch and corresponding pointerevent targets ins ide and outside the iframe.");
136 136
137 </script> 137 </script>
138 138
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698