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

Unified Diff: content/test/data/device_orientation/device_orientation_null_test_with_alert.html

Issue 214763002: Add end-to-end browser tests for Device Motion/Orientation null-events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@March-24-null-firing-testing
Patch Set: rebased + fixed some comments Created 6 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
« no previous file with comments | « content/test/data/device_orientation/device_motion_null_test_with_alert.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/device_orientation/device_orientation_null_test_with_alert.html
diff --git a/content/test/data/device_orientation/device_orientation_null_test_with_alert.html b/content/test/data/device_orientation/device_orientation_null_test_with_alert.html
new file mode 100644
index 0000000000000000000000000000000000000000..0fc16386367a331a7e0d20c39c522b38bd5587be
--- /dev/null
+++ b/content/test/data/device_orientation/device_orientation_null_test_with_alert.html
@@ -0,0 +1,32 @@
+<html>
+ <head>
+ <title>DeviceOrientation all-null event test with alert</title>
+ <script type="text/javascript">
+ function checkOrientationEvent(event) {
+ return event.alpha == null &&
+ event.beta == null &&
+ event.gamma == null;
+ }
+
+ function onOrientation(event) {
+ window.removeEventListener('deviceorientation', onOrientation);
+ checkOrientationEvent(event) ? pass() : fail();
+ }
+
+ function pass() {
+ document.getElementById('status').innerHTML = 'PASS';
+ document.location = '#pass';
+ }
+
+ function fail() {
+ document.location = '#fail';
+ }
+
+ window.addEventListener('deviceorientation', onOrientation);
+ alert("suspend active DOM objects");
+ </script>
+ </head>
+ <body>
+ <div id="status">FAIL</div>
+ </body>
+</html>
« no previous file with comments | « content/test/data/device_orientation/device_motion_null_test_with_alert.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698