summaryrefslogtreecommitdiffstats
path: root/dom/svg/test/test_text_dirty.html
blob: a7f5d1b58675437993f0b1115477ad230ba3adc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=886230
-->
<head>
  <title>Test for Bug 886230</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <style type="text/css">
  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=886230">Mozilla Bug 886230</a>
<p id="display">
  <svg>
    <mask id="m"><text id="t">x</text></mask>
    <rect width="600" height="400" mask="url(#m)"/>
  </svg>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
function runTest() {
  var svgText = document.getElementById("t");

  // Dirty the frames.
  document.getElementById("display").style.width = "700px";
  svgText.removeChild(svgText.firstChild);

  // Paint without flushing layout.  If the test fails, we'll trigger
  // an assertion.
  SpecialPowers.snapshotWindowWithOptions(window, undefined, undefined, { DRAWWINDOW_DO_NOT_FLUSH: true });

  ok(true);
  SimpleTest.finish();
}

window.addEventListener("load", runTest, false);

SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>