summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/partial-prerender-translate-2-ref.html
blob: 98ee6a1f140b37d0a663ff7317f3db7801dbfab5 (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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<style>
html {
  overflow: hidden;
}
body {
  margin: 0px;
  padding: 0px;
}
#target {
  width: 2000px;
  height: 2000px;
  position: absolute;
  transform: translateX(-325px);
}
</style>
<div id="target">
  <!--
    Put an SVG element so that the transform display item has a blob on
    WebRender which means this test properly fails without the proper fix.
    -->
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
    <rect fill="green" x="0" width="1125" height="2000"></rect>
    <rect fill="red" x="1125" width="875" height="2000"></rect>
  </svg>
</div>
</html>