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

Side by Side Diff: third_party/WebKit/LayoutTests/device_orientation/orientation/page-visibility.html

Issue 2677603003: Move DeviceMotion and DeviceOrientation out from fast/dom/. (Closed)
Patch Set: device_orientation Created 3 years, 10 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 <body> 3 <body>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script> 5 <script>
6 description('Tests to check that deviceorientation events are not fired when the page is not visible.'); 6 description('Tests to check that deviceorientation events are not fired when the page is not visible.');
7 window.jsTestIsAsync = true; 7 window.jsTestIsAsync = true;
8 8
9 function succeedAndFinish() 9 function succeedAndFinish()
10 { 10 {
11 testPassed("Received a deviceorientation event"); 11 testPassed("Received a deviceorientation event");
12 finishJSTest(); 12 finishJSTest();
13 } 13 }
14 14
(...skipping 30 matching lines...) Expand all
45 } 45 }
46 46
47 if (window.testRunner) 47 if (window.testRunner)
48 testRunner.setMockDeviceOrientation(true, 1, true, 2, true, 3, true); 48 testRunner.setMockDeviceOrientation(true, 1, true, 2, true, 3, true);
49 49
50 debug("* Page is visible"); 50 debug("* Page is visible");
51 window.addEventListener('deviceorientation', deviceOrientationListener); 51 window.addEventListener('deviceorientation', deviceOrientationListener);
52 </script> 52 </script>
53 </body> 53 </body>
54 </html> 54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698