| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <meta name="viewport" content="initial-scale=1"> | 3 <meta name="viewport" content="initial-scale=1"> |
| 4 <title>Basic Rasterization Test: Blue Box over Black Background</title> | 4 <title>Basic Rasterization Test: Blue Box over Black Background</title> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 body { | 6 body { |
| 7 margin: 0px; | 7 margin: 0px; |
| 8 padding: 0px; | 8 padding: 0px; |
| 9 background-color: white; | 9 background-color: green; |
| 10 } | 10 } |
| 11 #container { | 11 #container { |
| 12 position: relative; | 12 position: relative; |
| 13 margin: 10px; | 13 margin: 10px; |
| 14 width: 200px; | 14 width: 200px; |
| 15 height: 200px; | 15 height: 200px; |
| 16 background-color: black; | 16 background-color: black; |
| 17 } | 17 } |
| 18 #blue_box { | 18 #blue_box { |
| 19 position: relative; | 19 position: relative; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 44 } | 44 } |
| 45 </script> | 45 </script> |
| 46 </head> | 46 </head> |
| 47 | 47 |
| 48 <body onload="main()"> | 48 <body onload="main()"> |
| 49 <div id="container"> | 49 <div id="container"> |
| 50 <div id="blue_box"></div> | 50 <div id="blue_box"></div> |
| 51 </div> | 51 </div> |
| 52 </body> | 52 </body> |
| 53 </html> | 53 </html> |
| OLD | NEW |