summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html')
-rw-r--r--testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html b/testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html
new file mode 100644
index 0000000000..e5ac1c98b4
--- /dev/null
+++ b/testing/web-platform/tests/orientation-event/orientation/t012-manual.https.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Implementations that are unable to provide all three angles must set the values of the unknown angles to null</title>
+ <meta name=viewport content="width=device-width, maximum-scale=1.0">
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <link rel="author" title="Mosquito FP7">
+ <link rel="reviewer author" title="Zhiqiang Zhang" href="mailto:zhiqiang.zhang@intel.com"> <!-- 2013-10-12 -->
+ </head>
+ <body>
+ <p>Precondition: implementation is unable to provide all three angles</p>
+ <p>Rotate the device to run the test.</p>
+ <div id="log"></div>
+ <script>
+ var t1 = async_test("Alpha, Beta and Gamma are null. absolute is false.");
+ var run = false;
+ window.addEventListener("deviceorientation", function(e) {
+ if (!run) {
+ run = true;
+ t1.step(function() {
+ assert_equals(e.alpha, null, "alpha is set to null");
+ assert_equals(e.beta, null, "beta is set to null");
+ assert_equals(e.gamma, null, "gamma is set to null");
+ assert_false(e.absolute, "absolute is set to false");
+ });
+ t1.done();
+ }
+ }, false);
+
+ test(function() {
+ var evt = new DeviceOrientationEvent("foo");
+ assert_equals(evt.alpha, null, "alpha is set to null");
+ assert_equals(evt.beta, null, "beta is set to null");
+ assert_equals(evt.gamma, null, "gamma is set to null");
+ assert_false(evt.absolute, "absolute is set to false");
+ }, "User created event is initialized properly");
+ </script>
+ </body>
+</html>
+