Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
|
esprehn
2015/05/25 21:28:13
Leave out html, head and body.
Miyoung Shin(g)
2015/05/31 14:01:13
Done.
And this file has merged to EventHandlerTest
| |
| 4 <meta name="viewport" content="width=300"> | |
| 5 | |
| 6 <style type="text/css"> | |
|
esprehn
2015/05/25 21:28:13
remove type
Miyoung Shin(g)
2015/05/31 14:01:13
Done.
| |
| 7 body { | |
| 8 margin: 0px; | |
| 9 } | |
| 10 .upper { | |
| 11 background-color: #ffbbaa; | |
| 12 width: 300px; | |
| 13 height: 400px; | |
| 14 } | |
| 15 .lower { | |
| 16 background-color: #ffddaa; | |
| 17 margin: 0px; | |
| 18 width: 300px; | |
| 19 height: 400px; | |
| 20 } | |
| 21 .horizontal-line { | |
| 22 display: block; | |
| 23 width: 300px; | |
| 24 height: 30px; | |
| 25 background-color: #ccccff; | |
| 26 } | |
| 27 </style> | |
| 28 </head> | |
| 29 <body> | |
| 30 <div class="upper"></div> | |
| 31 <div class="lower"> | |
| 32 <span class="horizontal-line">Line 1</span><span class="horizontal-line">L ine 2</span><span class="horizontal-line">Line 3</span><span class="horizontal-l ine">Line 4</span><span class="horizontal-line">Line 5</span><span class="horizo ntal-line">Line 6</span><span class="horizontal-line">Line 7</span><span class=" horizontal-line">Line 8</span><span class="horizontal-line">Line 9</span><span c lass="horizontal-line">Line 10</span> | |
| 33 </div> | |
| 34 </body> | |
| 35 </html> | |
| OLD | NEW |