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/svg-foreignObject-font-size.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Zoom: foreignObject font-size should not be double-zoomed</title>
<link rel="match" href="svg-foreignObject-font-size-ref.html">
<style>
:root {
zoom: 4;
font-size: 16px;
}
</style>
<svg width="50" height="25">
<foreignObject width="50" height="25">
<div>TEST</div>
</foreignObject>
</svg>
<svg width="50" height="25">
<foreignObject width="50" height="25">
<div style="font-size:16px">TEST</div>
</foreignObject>
</svg>
<svg width="50" height="25">
<foreignObject width="50" height="25">
<div style="font-size:inherit">TEST</div>
</foreignObject>
</svg>
<svg width="50" height="25" style="font-size:inherit">
<foreignObject width="50" height="25">
<div>TEST</div>
</foreignObject>
</svg>