| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style> | 5 <style> |
| 6 .box { | 6 .box { |
| 7 width: 100px; | 7 width: 100px; |
| 8 height: 100px; | 8 height: 100px; |
| 9 background-color: blue; | 9 background-color: blue; |
| 10 } | 10 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 </script> | 40 </script> |
| 41 </head> | 41 </head> |
| 42 <body> | 42 <body> |
| 43 <p>This test should not crash when run with MallocScribble enabled.</p> | 43 <p>This test should not crash when run with MallocScribble enabled.</p> |
| 44 <div id="reflected" class="box"> | 44 <div id="reflected" class="box"> |
| 45 <div class="child box"></div> | 45 <div class="child box"></div> |
| 46 </div> | 46 </div> |
| 47 <div id="container"></div> | 47 <div id="container"></div> |
| 48 </body> | 48 </body> |
| 49 </html> | 49 </html> |
| OLD | NEW |