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

Unified Diff: LayoutTests/fast/events/touch/document-create-touch.html

Issue 1159793005: Deprecated webkit-prefixed properties of the Touch interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | LayoutTests/fast/events/touch/document-create-touch-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/touch/document-create-touch.html
diff --git a/LayoutTests/fast/events/touch/document-create-touch.html b/LayoutTests/fast/events/touch/document-create-touch.html
index ab628e90de19f6e198480f962c5074ee120e98ce..01c04ce2a25993c1463b54bbc0c6a2a46d8b99b3 100644
--- a/LayoutTests/fast/events/touch/document-create-touch.html
+++ b/LayoutTests/fast/events/touch/document-create-touch.html
@@ -35,10 +35,6 @@ shouldBe("touch.radiusX", "5");
shouldBe("touch.radiusY", "3");
shouldBe("touch.rotationAngle", "10");
shouldBe("touch.force", "10");
-shouldBe("touch.webkitRadiusX", "5");
philipj_slow 2015/06/02 20:09:18 Please leave the prefixed usage in at least one te
mustaq 2015/06/02 20:18:03 Done.
-shouldBe("touch.webkitRadiusY", "3");
-shouldBe("touch.webkitRotationAngle", "10");
-shouldBe("touch.webkitForce", "10");
var emptyTouch = document.createTouch();
shouldBeNonNull("emptyTouch");
@@ -52,10 +48,6 @@ shouldBe("emptyTouch.radiusX", "0");
shouldBe("emptyTouch.radiusY", "0");
shouldBe("emptyTouch.rotationAngle", "0");
shouldBe("emptyTouch.force", "0");
-shouldBe("emptyTouch.webkitRadiusX", "0");
-shouldBe("emptyTouch.webkitRadiusY", "0");
-shouldBe("emptyTouch.webkitRotationAngle", "0");
-shouldBe("emptyTouch.webkitForce", "0");
// Try invoking with incorrect parameter types.
var badParamsTouch = document.createTouch(function(x) { return x; }, 12, 'a', 'b', 'c', function(x) { return x; }, 104, 'a', 'b', 'c', 'd');
@@ -70,10 +62,6 @@ shouldBe("badParamsTouch.radiusX", "0");
shouldBe("badParamsTouch.radiusY", "0");
shouldBe("badParamsTouch.rotationAngle", "0");
shouldBe("badParamsTouch.force", "0");
-shouldBe("badParamsTouch.webkitRadiusX", "0");
-shouldBe("badParamsTouch.webkitRadiusY", "0");
-shouldBe("badParamsTouch.webkitRotationAngle", "0");
-shouldBe("badParamsTouch.webkitForce", "0");
// Should not crash when invoked on a detached Document.
var detachedTouch;
@@ -88,10 +76,6 @@ shouldBe("detachedTouch.radiusX", "0");
shouldBe("detachedTouch.radiusY", "0");
shouldBe("detachedTouch.rotationAngle", "0");
shouldBe("detachedTouch.force", "0");
-shouldBe("detachedTouch.webkitRadiusX", "0");
-shouldBe("detachedTouch.webkitRadiusY", "0");
-shouldBe("detachedTouch.webkitRotationAngle", "0");
-shouldBe("detachedTouch.webkitForce", "0");
isSuccessfullyParsed();
</script>
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/document-create-touch-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698