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

Unified Diff: chrome/test/data/device_orientation/device_orientation_test.html

Issue 2858049: Chromium plumbing for Device Orientation. (Closed)
Patch Set: Fixes after try bot runs Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/device_orientation/device_orientation_test.html
diff --git a/chrome/test/data/device_orientation/device_orientation_test.html b/chrome/test/data/device_orientation/device_orientation_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..95c68f553c86354602c867cdda05f1491caef544
--- /dev/null
+++ b/chrome/test/data/device_orientation/device_orientation_test.html
@@ -0,0 +1,36 @@
+<html>
+ <head>
+ <title>DeviceOrientation test</title>
+ <script type="text/javascript">
+ var eventCount = 0;
+
+ function checkOrientationEvent(event) {
+ // Return true iff the orientation is close enough to (1, 2, 3).
+ return Math.abs(event.alpha - 1) < 0.01 &&
+ Math.abs(event.beta - 2) < 0.01 &&
+ Math.abs(event.gamma - 3) < 0.01;
+ }
+
+ function onOrientation(event) {
+ if (checkOrientationEvent(event)) {
+ window.removeEventListener('deviceorientation', onOrientation);
+ pass();
+ } else {
+ fail();
+ }
+ }
+
+ function pass() {
+ document.getElementById('status').innerHTML = 'PASS';
+ document.location = '#pass';
+ }
+
+ function fail() {
+ document.location = '#fail';
+ }
+ </script>
+ </head>
+ <body onLoad="window.addEventListener('deviceorientation', onOrientation)">
+ <div id="status">FAIL</div>
+ </body>
+</html>
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698