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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/pointerevents/pointer-event-properties-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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <script src='../../../../../resources/js-test.js'></script> 2 <script src='../../../resources/js-test.js'></script>
3 <style> 3 <style>
4 iframe { 4 iframe {
5 width: 300px; 5 width: 300px;
6 height: 300px; 6 height: 300px;
7 top: 100px; 7 top: 100px;
8 left: 50px; 8 left: 50px;
9 border: 0; 9 border: 0;
10 position: absolute; 10 position: absolute;
11 background: green; 11 background: green;
12 } 12 }
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 if (window.eventSender) { 100 if (window.eventSender) {
101 testRunner.waitUntilDone(); 101 testRunner.waitUntilDone();
102 window.onload = runTests; 102 window.onload = runTests;
103 } else 103 } else
104 debug('This test requires eventSender'); 104 debug('This test requires eventSender');
105 105
106 description("This test verifies clientX/Y of pointer events inside iframe."); 106 description("This test verifies clientX/Y of pointer events inside iframe.");
107 107
108 </script> 108 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698