Index: LayoutTests/virtual/stable/animations-unprefixed/transitions-unprefixed.html |
diff --git a/LayoutTests/virtual/stable/animations-unprefixed/transitions-unprefixed.html b/LayoutTests/virtual/stable/animations-unprefixed/transitions-unprefixed.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8573efb12316acb64490bd0005ecdf561f89f26f |
--- /dev/null |
+++ b/LayoutTests/virtual/stable/animations-unprefixed/transitions-unprefixed.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+ |
+<style> |
+#bg { |
+ transition: all 5s; |
+ transform: none; |
+} |
+</style> |
+<div id="div"></div> |
+ |
+<script> |
+div.offsetTop; |
+ |
+test(function() { |
+ div.style.transform = "translateX(100px)"; |
+ assert_not_equals(getComputedStyle(div).transform, "translateX(100px)"); |
+}, 'Ensure that unprefixed transitions work.'); |
+</script> |