OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | |
5 if (window.internals) | |
6 window.internals.settings.setCSSExclusionsEnabled(true); | |
7 </script> | |
8 <style> | 4 <style> |
9 .container { | 5 .container { |
10 position: relative; | 6 position: relative; |
11 width: 200px; | 7 width: 200px; |
12 height: 200px; | 8 height: 200px; |
13 overflow-wrap: break-word; | 9 overflow-wrap: break-word; |
14 border: 2px solid blue; | 10 border: 2px solid blue; |
15 font: 40px/1 Ahem, sans-serif; | 11 font: 40px/1 Ahem, sans-serif; |
16 color: green; | 12 color: green; |
17 } | 13 } |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 <p>Setting outside-shape with no prior entry</p> | 49 <p>Setting outside-shape with no prior entry</p> |
54 <div id='set-outside-shape' class='container shape outside'><div><div>xxxxxx
xxxx</div></div></div> | 50 <div id='set-outside-shape' class='container shape outside'><div><div>xxxxxx
xxxx</div></div></div> |
55 | 51 |
56 <p>Setting outside-shape with a prior entry</p> | 52 <p>Setting outside-shape with a prior entry</p> |
57 <div id='reset-outside-shape' class='container shape outside'><div><div>xxxx
xxxxxx</div></div></div> | 53 <div id='reset-outside-shape' class='container shape outside'><div><div>xxxx
xxxxxx</div></div></div> |
58 | 54 |
59 <p>Removing shape-outside with a prior entry</p> | 55 <p>Removing shape-outside with a prior entry</p> |
60 <div id='remove-outside-shape' class='container'><div><div>xxxxxxxxxx</div><
/div></div> | 56 <div id='remove-outside-shape' class='container'><div><div>xxxxxxxxxx</div><
/div></div> |
61 </body> | 57 </body> |
62 </html> | 58 </html> |
OLD | NEW |