summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/outer-svg-border-and-padding-01.svg
blob: f9f7b206859f07b813e9a4c62654c9cb9b4102a7 (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
48
49
50
51
52
53
54
55
56
57
58
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="reftest-wait"
     style="border: 10px solid lime; padding: 10px; background: lime;">
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=490003 -->
  <title>Test that invalidation takes account of outer-&lt;svg&gt; border/padding</title>
  <desc>
    This test checks that SVG implementations take account of border and
    padding on outer &lt;svg&gt; when doing invalidation.
  </desc>

  <filter id="identity">
    <feColorMatrix type="saturate" in="SourceGraphic"/>
  </filter>

  <script type="text/javascript">//<![CDATA[

function hide_red_rects()
{
  var background = document.getElementById("background");
  
  document.getElementById('r').setAttribute('opacity','0');
  document.getElementById('f').setAttribute('opacity','0');
  
  <!-- top left -->
  document.elementFromPoint(121, 121).setAttribute('opacity','0');
  <!-- bottom right -->
  document.elementFromPoint(269, 169).setAttribute('opacity','0');

  <!-- outside top left -->
  if (document.elementFromPoint(119, 119) != background) {
    background.setAttribute("fill", "red");
  }
  <!-- outside bottom right -->
  if (document.elementFromPoint(271, 171) != background) {
    background.setAttribute("fill", "purple");
  }

  document.documentElement.removeAttribute('class');
}

document.addEventListener("MozReftestInvalidate", hide_red_rects, false);
setTimeout(hide_red_rects, 4000); // fallback for running outside reftest

  //]]>
  </script>

  <!-- to catch misses-->
  <rect id="background" width="100%" height="100%" fill="lime"/>
  
  <rect id="r" width="50" height="50" fill="red"/>
  <rect id="f" y="100" width="50" height="50" fill="red"/>
  
  <rect x="100" y="100" width="50" height="50" fill="red"/>
  <rect x="200" y="100" width="50" height="50" fill="red"/>
</svg>