blob: 892860036a6b2d679451c19344ff5ea9d3098e5b [file] [edit]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>currentCSSZoom Regression Test</title>
<script>
if (window.internals)
internals.setPageZoomFactor(2);
</script>
</head>
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
let zoomInfo;
if ('currentCSSZoom' in Element.prototype) {
zoomInfo = 'currentCSSZoom (Should be "1"): ' + document.body.currentCSSZoom;
} else {
zoomInfo = 'currentCSSZoom not supported';
}
document.body.innerText = zoomInfo;
</script>
</body>
</html>