| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 This tests verifies that blur is repainted using the full source image of th
e element instead of just the dirty area. | 3 This tests verifies that blur is repainted using the full source image of th
e element instead of just the dirty area. |
| 4 Also it tests that the filter area includes all the child RenderLayers and a
pplies the children's transforms correctly. | 4 Also it tests that the filter area includes all the child Layers and applies
the children's transforms correctly. |
| 5 You should see three green rectangles slightly rotated and blured. There sho
uld be no red. | 5 You should see three green rectangles slightly rotated and blured. There sho
uld be no red. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <style> | 9 <style> |
| 10 .box { | 10 .box { |
| 11 position: relative; | 11 position: relative; |
| 12 margin: 10px; | 12 margin: 10px; |
| 13 height: 50px; | 13 height: 50px; |
| 14 width: 50px; | 14 width: 50px; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 <body onload="repaintTest()"> | 52 <body onload="repaintTest()"> |
| 53 | 53 |
| 54 <div class="blur"> | 54 <div class="blur"> |
| 55 <div class="box"></div> | 55 <div class="box"></div> |
| 56 <div class="box before"></div> | 56 <div class="box before"></div> |
| 57 <div class="box"></div> | 57 <div class="box"></div> |
| 58 </div> | 58 </div> |
| 59 | 59 |
| 60 </body> | 60 </body> |
| 61 </html> | 61 </html> |
| OLD | NEW |