| OLD | NEW |
| 1 This test checks that changing the transform on an element triggers a correct in
validation. | 1 This test checks that changing the transform on an element triggers a correct in
validation. |
| 2 The paint invalidations below should match the transformed element's coordinates
. | 2 The paint invalidations below should match the transformed element's coordinates
. |
| 3 Tested locations: 1200,1500 | 3 Tested locations: 1200,1500 |
| 4 { | 4 { |
| 5 "bounds": [1600, 585], | 5 "bounds": [1600, 585], |
| 6 "children": [ | 6 "children": [ |
| 7 { | 7 { |
| 8 "bounds": [1600, 585], | 8 "bounds": [1600, 585], |
| 9 "contentsOpaque": true, | 9 "contentsOpaque": true, |
| 10 "drawsContent": true, | 10 "drawsContent": true, |
| 11 "repaintRects": [ | 11 "paintInvalidations": [ |
| 12 [1500, 0, 100, 100], | 12 { |
| 13 [1300, 0, 300, 585], | 13 "object": "LayoutBlockFlow DIV id='box'", |
| 14 [1200, 0, 100, 100], | 14 "rect": [900, 0, 100, 100], |
| 15 [1200, 0, 100, 100], | 15 "reason": "location change" |
| 16 [1000, 0, 300, 585], | 16 }, |
| 17 [900, 0, 100, 100] | 17 { |
| 18 "object": "LayoutBlockFlow DIV id='box'", |
| 19 "rect": [1200, 0, 100, 100], |
| 20 "reason": "location change" |
| 21 }, |
| 22 { |
| 23 "object": "LayoutBlockFlow DIV id='box'", |
| 24 "rect": [1200, 0, 100, 100], |
| 25 "reason": "location change" |
| 26 }, |
| 27 { |
| 28 "object": "LayoutBlockFlow DIV id='box'", |
| 29 "rect": [1500, 0, 100, 100], |
| 30 "reason": "location change" |
| 31 }, |
| 32 { |
| 33 "object": "LayoutView #document", |
| 34 "rect": [1000, 0, 300, 585], |
| 35 "reason": "incremental" |
| 36 }, |
| 37 { |
| 38 "object": "LayoutView #document", |
| 39 "rect": [1300, 0, 300, 585], |
| 40 "reason": "incremental" |
| 41 } |
| 18 ] | 42 ] |
| 19 } | 43 } |
| 20 ] | 44 ] |
| 21 } | 45 } |
| 22 | 46 |
| OLD | NEW |