no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / svg / foreignObject-dynamic-line-height-01.html
blobe892942859d124072cbf4b30cef8b3b622183a97
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <svg id="box">
4 <foreignObject width="100" height="100">
5 This is long text that wraps.
6 </foreignObject>
7 </svg>
8 <script>
9 document.addEventListener("MozReftestInvalidate", doTest, false);
10 setTimeout(doTest, 4000); // fallback for running outside reftest
12 function doTest() {
13 document.querySelector("foreignObject").style.lineHeight = 3;
14 document.documentElement.removeAttribute('class');
16 </script>
17 </htmml>