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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html

Issue 2011833002: Typed CSSOM: Rename CalcLength and StyleCalcLength to CSSCalcLength (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
Index: third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html b/third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html
index e7260daf885c94d40a3e4e41a45dcec532244e86..d879467f9970acd1c4fd5d3aba88984a483fe973 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/perspectiveTransformComponent.html
@@ -5,9 +5,9 @@
<script>
test(function() {
- var calcLength = new CalcLength({px: 10, percent: 3.2});
+ var calcLength = new CSSCalcLength({px: 10, percent: 3.2});
assert_throws(null, function() { new Perspective(calcLength) });
-}, "Constructor should throw an error for CalcLengths with a percentage type");
+}, "Constructor should throw an error for CSSCalcLengths with a percentage type");
test(function() {
var simpleLength = new CSSSimpleLength(10, 'percent');
@@ -16,7 +16,7 @@ test(function() {
test(function() {
var simpleLength = new CSSSimpleLength(10, 'px');
- var calcLength = new CalcLength({px: 10, em: 3.2});
+ var calcLength = new CSSCalcLength({px: 10, em: 3.2});
var perspectiveTransformSimple = new Perspective(simpleLength);
var perspectiveTransformCalc = new Perspective(calcLength);

Powered by Google App Engine
This is Rietveld 408576698