| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 body { | 3 body { |
| 4 margin: 0px; | 4 margin: 0px; |
| 5 } | 5 } |
| 6 | 6 |
| 7 #box { | 7 #box { |
| 8 background-color: purple; | 8 background-color: purple; |
| 9 height: 100px; | 9 height: 100px; |
| 10 width: 100px; | 10 width: 100px; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 | 45 |
| 46 requestAnimationFrame(tick); | 46 requestAnimationFrame(tick); |
| 47 }; | 47 }; |
| 48 </script> | 48 </script> |
| 49 <div id="box"></div> | 49 <div id="box"></div> |
| 50 This test checks that changing the transform on an element triggers a correct in
validation.<br> | 50 This test checks that changing the transform on an element triggers a correct in
validation.<br> |
| 51 The paint invalidations below should match the transformed element's coordinates
. | 51 The paint invalidations below should match the transformed element's coordinates
. |
| 52 <pre id="result"></pre> | 52 <pre id="result"></pre> |
| OLD | NEW |