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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/DeviceMotion/null-values.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/DeviceMotion/null-values.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/DeviceMotion/null-values.html b/third_party/WebKit/LayoutTests/fast/dom/DeviceMotion/null-values.html
deleted file mode 100644
index 23ace57d66e179172f8b80e9bfb1d1c845ca3188..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/DeviceMotion/null-values.html
+++ /dev/null
@@ -1,109 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<script src="../../../resources/js-test.js"></script>
-<script>
-description('Tests using null values for some or all of the event properties.');
-
-var mockEvent;
-function setMockMotion(accelerationX, accelerationY, accelerationZ,
- accelerationIncludingGravityX, accelerationIncludingGravityY, accelerationIncludingGravityZ,
- rotationRateAlpha, rotationRateBeta, rotationRateGamma,
- interval) {
-
- mockEvent = {accelerationX: accelerationX, accelerationY: accelerationY, accelerationZ: accelerationZ,
- accelerationIncludingGravityX: accelerationIncludingGravityX, accelerationIncludingGravityY: accelerationIncludingGravityY, accelerationIncludingGravityZ: accelerationIncludingGravityZ,
- rotationRateAlpha: rotationRateAlpha, rotationRateBeta: rotationRateBeta, rotationRateGamma: rotationRateGamma,
- interval: interval};
-
- if (window.testRunner)
- testRunner.setMockDeviceMotion(null != mockEvent.accelerationX, null == mockEvent.accelerationX ? 0 : mockEvent.accelerationX,
- null != mockEvent.accelerationY, null == mockEvent.accelerationY ? 0 : mockEvent.accelerationY,
- null != mockEvent.accelerationZ, null == mockEvent.accelerationZ ? 0 : mockEvent.accelerationZ,
- null != mockEvent.accelerationIncludingGravityX, null == mockEvent.accelerationIncludingGravityX ? 0 : mockEvent.accelerationIncludingGravityX,
- null != mockEvent.accelerationIncludingGravityY, null == mockEvent.accelerationIncludingGravityY ? 0 : mockEvent.accelerationIncludingGravityY,
- null != mockEvent.accelerationIncludingGravityZ, null == mockEvent.accelerationIncludingGravityZ ? 0 : mockEvent.accelerationIncludingGravityZ,
- null != mockEvent.rotationRateAlpha, null == mockEvent.rotationRateAlpha ? 0 : mockEvent.rotationRateAlpha,
- null != mockEvent.rotationRateBeta, null == mockEvent.rotationRateBeta ? 0 : mockEvent.rotationRateBeta,
- null != mockEvent.rotationRateGamma, null == mockEvent.rotationRateGamma ? 0 : mockEvent.rotationRateGamma,
- interval);
- else
- debug('This test can not be run without the TestRunner');
-}
-
-
-var deviceMotionEvent;
-function checkMotion(event) {
- deviceMotionEvent = event;
- shouldBe('deviceMotionEvent.acceleration.x', 'mockEvent.accelerationX');
- shouldBe('deviceMotionEvent.acceleration.y', 'mockEvent.accelerationY');
- shouldBe('deviceMotionEvent.acceleration.z', 'mockEvent.accelerationZ');
-
- shouldBe('deviceMotionEvent.accelerationIncludingGravity.x', 'mockEvent.accelerationIncludingGravityX');
- shouldBe('deviceMotionEvent.accelerationIncludingGravity.y', 'mockEvent.accelerationIncludingGravityY');
- shouldBe('deviceMotionEvent.accelerationIncludingGravity.z', 'mockEvent.accelerationIncludingGravityZ');
-
- shouldBe('deviceMotionEvent.rotationRate.alpha', 'mockEvent.rotationRateAlpha');
- shouldBe('deviceMotionEvent.rotationRate.beta', 'mockEvent.rotationRateBeta');
- shouldBe('deviceMotionEvent.rotationRate.gamma', 'mockEvent.rotationRateGamma');
-
- shouldBe('deviceMotionEvent.interval', 'mockEvent.interval');
-}
-
-function firstListener(event) {
- checkMotion(event);
- window.removeEventListener('devicemotion', firstListener);
- setTimeout(function(){initSecondListener();}, 0);
-}
-
-function initSecondListener() {
- setMockMotion(1, 2, 3,
- null, null, null,
- null, null, null,
- 100);
- window.addEventListener('devicemotion', secondListener);
-}
-
-function secondListener(event) {
- checkMotion(event);
- window.removeEventListener('devicemotion', secondListener);
- setTimeout(function(){initThirdListener();}, 0);
-}
-
-function initThirdListener() {
- setMockMotion(null, null, null,
- 1, 2, 3,
- null, null, null,
- 100);
- window.addEventListener('devicemotion', thirdListener);
-}
-
-function thirdListener(event) {
- checkMotion(event);
- window.removeEventListener('devicemotion', thirdListener);
- setTimeout(function(){initFourthListener();}, 0);
-}
-
-function initFourthListener() {
- setMockMotion(null, null, null,
- null, null, null,
- 1, 2, 3,
- 100);
- window.addEventListener('devicemotion', fourthListener);
-}
-
-function fourthListener(event) {
- checkMotion(event);
- finishJSTest();
-}
-
-setMockMotion(null, null, null,
- null, null, null,
- null, null, null,
- 0);
-window.addEventListener('devicemotion', firstListener);
-
-window.jsTestIsAsync = true;
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698