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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/null-values.html

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/null-values.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/null-values.html b/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/null-values.html
index d3ef8c15e5b0cb37587f1dbc421d6d368338b2a8..fbf293ff5c07524c92efc2708ec8a968744451de 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/null-values.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/DeviceOrientation/null-values.html
@@ -13,7 +13,7 @@ function setMockOrientation(alpha, beta, gamma, absolute) {
null != mockEvent.alpha, null == mockEvent.alpha ? 0 : mockEvent.alpha,
null != mockEvent.beta, null == mockEvent.beta ? 0 : mockEvent.beta,
null != mockEvent.gamma, null == mockEvent.gamma ? 0 : mockEvent.gamma,
- null != mockEvent.absolute, null == mockEvent.absolute ? false : mockEvent.absolute);
+ mockEvent.absolute);
else
debug('This test can not be run without the TestRunner');
}

Powered by Google App Engine
This is Rietveld 408576698