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

Unified Diff: content/test/data/device_sensors/device_orientation_absolute_null_test.html

Issue 2744243006: Ensure complete end-to-end browsertest coverage for absolute device orientation. (Closed)
Patch Set: Michael's comment Created 3 years, 9 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
Index: content/test/data/device_sensors/device_orientation_absolute_null_test.html
diff --git a/content/test/data/device_sensors/device_orientation_absolute_null_test.html b/content/test/data/device_sensors/device_orientation_absolute_null_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..266ef00de3699f9dd2a2599538c6008e1e1c62f9
--- /dev/null
+++ b/content/test/data/device_sensors/device_orientation_absolute_null_test.html
@@ -0,0 +1,31 @@
+<html>
+ <head>
+ <title>DeviceOrientationAbsolute all-null event test</title>
+ </head>
+ <body>
+ <div id="status">FAIL</div>
+ </body>
+ <script type="text/javascript">
+ function checkOrientationAbsoluteEvent(event) {
+ return event.alpha == null &&
+ event.beta == null &&
+ event.gamma == null;
+ }
+
+ function onOrientationAbsolute(event) {
+ window.removeEventListener('deviceorientationabsolute', onOrientationAbsolute);
+ checkOrientationAbsoluteEvent(event) ? pass() : fail();
+ }
+
+ function pass() {
+ document.getElementById('status').innerHTML = 'PASS';
+ document.location = '#pass';
+ }
+
+ function fail() {
+ document.location = '#fail';
+ }
+
+ window.addEventListener('deviceorientationabsolute', onOrientationAbsolute);
+ </script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698