| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 div { | 4 div { |
| 5 width: 100px; | 5 width: 100px; |
| 6 height:100px; | 6 height:100px; |
| 7 overflow:hidden; | 7 overflow:hidden; |
| 8 float:left; | 8 float:left; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .green { | 11 .green { |
| 12 background-color:green | 12 background-color:green |
| 13 } | 13 } |
| 14 </style> | 14 </style> |
| 15 </head> | 15 </head> |
| 16 <body> | 16 <body> |
| 17 <p>Repaint test for <rdar><!-- | 17 <p>Repaint test for <rdar><!-- |
| 18 An explaination as to why this is here. In the beginning, there was an | 18 An explanation as to why this is here. In the beginning, there was an |
| 19 <rdar:://problem/6869687> link to rdar. However, that link was invisible | 19 <rdar:://problem/6869687> link to rdar. However, that link was invisible |
| 20 because it was enclosed in angle brackets. | 20 because it was enclosed in angle brackets. |
| 21 | 21 |
| 22 This was fine, until we implemented the HTML5 parsing algorithm, which changed | 22 This was fine, until we implemented the HTML5 parsing algorithm, which changed |
| 23 the name of the rdar element to not include // charaters. Rather than | 23 the name of the rdar element to not include // charaters. Rather than |
| 24 regenerate the expected results (which were platform specific), the rdar link | 24 regenerate the expected results (which were platform specific), the rdar link |
| 25 was changed to an <rdar> element and the expected render tree was hand-edited. | 25 was changed to an <rdar> element and the expected render tree was hand-edited. |
| 26 --> REGRESSION (r41203): Facebook friend suggestions disappear on update. Make
sure when a layer switches | 26 --> REGRESSION (r41203): Facebook friend suggestions disappear on update. Make
sure when a layer switches |
| 27 from being self-painting to non-self-painting that a layout happens to fix up th
e floating objects lists. You should see a 100x100 green square below. | 27 from being self-painting to non-self-painting that a layout happens to fix up th
e floating objects lists. You should see a 100x100 green square below. |
| 28 If you see any red, the test has failed. | 28 If you see any red, the test has failed. |
| 29 </p> | 29 </p> |
| 30 <div class="green"></div> | 30 <div class="green"></div> |
| 31 | 31 |
| OLD | NEW |