Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-viewport/zoom/widget.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<input type=checkbox>
<input type=radio>
<script>
for (let i of document.querySelectorAll("input")) {
test(function() {
let unzoomed = i.getBoundingClientRect().width;
i.style.zoom = "2";
let zoomed = i.getBoundingClientRect().width;
assert_not_equals(unzoomed, zoomed, "Zoom should be applied");
}, i.type);
}
</script>