OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <style> | |
3 .container { position: relative; width: 0; height: 0; } | |
4 .scale { transform-origin: 0 0; transform: scale(40); } | |
5 .child { width: 1px; height: 1px; background: blue; position: relative; left: 0.
4px } | |
6 </style> | |
7 <div class="container scale"> | |
8 <div class="child"></div> | |
9 </div> | |
10 <div class="container" style="top: 50px"> | |
11 <div class="child scale"></div> | |
12 </div> | |
13 <script src="resources/text-based-repaint.js"></script> | |
14 <script> | |
15 function repaintTest() { | |
16 for (var container of document.getElementsByClassName('container')) | |
17 container.style.left = '0.3px'; | |
18 } | |
19 onload = runRepaintAndPixelTest; | |
20 </script> | |
OLD | NEW |