Index: ManualTests/computed-transform-value.html |
diff --git a/ManualTests/computed-transform-value.html b/ManualTests/computed-transform-value.html |
index 5d7e6227497b6abab62951e98567b92c40af13fd..3a93a69b32fcbc37a51b9394b748dcf40b45cff8 100644 |
--- a/ManualTests/computed-transform-value.html |
+++ b/ManualTests/computed-transform-value.html |
@@ -29,19 +29,19 @@ |
<p id="output">Computed style for -webkit-transform displayed here</p> |
alancutter (OOO until 2018)
2014/10/14 05:13:49
This text should be updated.
|
-<div class="box" style="position: absolute; left: 100px; top: 200px; -webkit-transform: scale(1.5, 0.75)"> |
+<div class="box" style="position: absolute; left: 100px; top: 200px; transform: scale(1.5, 0.75)"> |
scale(1.5, 0.75) |
</div> |
-<div class="box" style="position: absolute; left: 400px; top: 200px; -webkit-transform: rotate(30deg)"> |
+<div class="box" style="position: absolute; left: 400px; top: 200px; transform: rotate(30deg)"> |
rotate(30deg) |
</div> |
-<div class="box" style="position: absolute; left: 100px; top: 400px; -webkit-transform: translate(50px, 80px)"> |
+<div class="box" style="position: absolute; left: 100px; top: 400px; transform: translate(50px, 80px)"> |
translate(50px, 80px) |
</div> |
-<div class="box" style="position: absolute; left: 400px; top: 400px; -webkit-transform: translate(10px, 50px) scale(0.8) rotate(-10deg)"> |
+<div class="box" style="position: absolute; left: 400px; top: 400px; transform: translate(10px, 50px) scale(0.8) rotate(-10deg)"> |
translate(10px, 50px) scale(0.8) rotate(-10deg) |
</div> |