summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html')
-rw-r--r--testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html
new file mode 100644
index 0000000000..3737901490
--- /dev/null
+++ b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Test: getComputedStyle().zoom</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/computed-testcommon.js"></script>
+<div id="target"></div>
+<script>
+test_computed_value("zoom", "normal", "1");
+
+test_computed_value("zoom", "1", "1");
+test_computed_value("zoom", "1.5", "1.5");
+test_computed_value("zoom", "0.75", "0.75");
+
+test_computed_value("zoom", "100%", "1");
+test_computed_value("zoom", "150%", "1.5");
+test_computed_value("zoom", "75%", "0.75");
+
+// Legacy crap, wat
+test_computed_value("zoom", "0", "1");
+test_computed_value("zoom", "0%", "1");
+</script>