summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/responsive/transform.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/web-animations/responsive/transform.html')
-rw-r--r--testing/web-platform/tests/web-animations/responsive/transform.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/web-animations/responsive/transform.html b/testing/web-platform/tests/web-animations/responsive/transform.html
new file mode 100644
index 0000000000..d57f8b136a
--- /dev/null
+++ b/testing/web-platform/tests/web-animations/responsive/transform.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+
+<div id='container'>
+<div id='element'></div>
+</div>
+
+<script>
+var element = document.getElementById('element');
+var container = document.getElementById('container');
+
+test(function() {
+ container.style.fontSize = '10px';
+ var player = element.animate([{transform: 'translateX(10em)'}, {transform: 'translateX(20em)'}], 10);
+ player.pause();
+ player.currentTime = 2;
+ container.style.fontSize = '20px';
+ assert_equals(getComputedStyle(element).transform, 'matrix(1, 0, 0, 1, 240, 0)');
+}, 'Transform responsive to font size changes');
+
+</script>