OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <style> | |
4 div { | |
5 width: 100px; | |
6 height:100px; | |
7 overflow:hidden; | |
8 float:left; | |
9 } | |
10 | |
11 .green { | |
12 background-color:green | |
13 } | |
14 </style> | |
15 </head> | |
16 <body> | |
17 <p>Repaint test for <rdar><!-- | |
18 Oh man, let me explain why this is here. In the beginning, there was an | |
19 <rdar:://problem/6869687> link to the great and mysterious rdar. However, that | |
20 link was invisible because whoever added it decided to enclose the link in | |
21 angle brackets. | |
22 | |
23 There was peace in the land, until we implemented the HTML5 parsing algorithm, | |
24 which changed the name of the mysterious rdar element to not include // | |
25 charaters. Rather than regenerate the expected results (which were platform | |
26 specific), our hero changed the rdar link to an <rdar> element and hand-edited | |
27 the expected render tree. | |
28 | |
29 And on the third day, he rested. --> REGRESSION (r41203): Facebook friend sugges
tions disappear on update. Make sure when a layer switches | |
30 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. | |
31 If you see any red, the test has failed. | |
32 </p> | |
33 <div class="green"></div> | |
34 | |
OLD | NEW |