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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/resources/basic-operation.js

Issue 1737443002: Make DeviceOrientationEvent.prototype.absolute non-nullable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address feedback Created 4 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/DeviceOrientation/resources/basic-operation.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/resources/basic-operation.js b/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/resources/basic-operation.js
index 951774c394ce86caed6d95771dc1b4d7732ae6e6..f945f2b34ea232913abcb388d03c34e3ac694639 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/resources/basic-operation.js
+++ b/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/resources/basic-operation.js
@@ -8,7 +8,7 @@ function testBasicOperation(eventType) {
mockBeta = 2.2;
mockGamma = 3.3;
mockAbsolute = true;
- testRunner.setMockDeviceOrientation(true, mockAlpha, true, mockBeta, true, mockGamma, true, mockAbsolute);
+ testRunner.setMockDeviceOrientation(true, mockAlpha, true, mockBeta, true, mockGamma, mockAbsolute);
window.addEventListener(eventType, function(e) {
event = e;
@@ -19,4 +19,3 @@ function testBasicOperation(eventType) {
finishJSTest();
});
}
-

Powered by Google App Engine
This is Rietveld 408576698