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

Unified Diff: LayoutTests/transforms/webkit-perspective-origin-csstext.html

Issue 1099483002: Use alias_for with trivial property aliases (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@alias
Patch Set: rebase a couple of tests Created 5 years, 8 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: LayoutTests/transforms/webkit-perspective-origin-csstext.html
diff --git a/LayoutTests/transforms/webkit-perspective-origin-csstext.html b/LayoutTests/transforms/webkit-perspective-origin-csstext.html
index 16130ed2a47b0b7ba43c9564b37d7d1c762eb05f..2b4bdbed1460179c7e4def4a93c229dd0cbd47eb 100644
--- a/LayoutTests/transforms/webkit-perspective-origin-csstext.html
+++ b/LayoutTests/transforms/webkit-perspective-origin-csstext.html
@@ -5,6 +5,6 @@
test(function(){
var div = document.createElement('div');
div.style.webkitPerspectiveOrigin = '20px 30px';
- assert_equals(div.style.cssText, '-webkit-perspective-origin: 20px 30px;');
+ assert_equals(div.style.cssText, 'perspective-origin: 20px 30px;');
}, "cssText behaves as expected with -webkit-perspective-origin");
</script>

Powered by Google App Engine
This is Rietveld 408576698