Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
cbiesinger
2016/07/21 19:54:16
You should keep this line; we don't usually want t
Gleb Lanbin
2016/07/21 20:49:01
Done.
| |
| 2 <html> | |
| 3 <head> | |
|
Manuel Rego
2016/07/20 06:00:23
You don't need html, head and body tags on this te
Gleb Lanbin
2016/07/21 18:25:30
Done.
| |
| 4 <title>Test Case with FIELDSET as flex container</title> | |
|
Manuel Rego
2016/07/20 06:00:23
We don't usually use the title to describe the tes
Gleb Lanbin
2016/07/21 18:25:31
Done.
| |
| 5 <style> | |
| 6 * { | |
| 7 padding: 1em; | |
|
Manuel Rego
2016/07/20 06:00:23
This is not needed.
Gleb Lanbin
2016/07/21 18:25:31
Done.
| |
| 8 } | |
| 9 </style> | |
| 10 </head> | |
| 11 | |
|
Manuel Rego
2016/07/20 06:00:23
It's usually nice to add a paragraph explaining wh
Gleb Lanbin
2016/07/21 18:25:31
Done.
| |
| 12 <body> | |
| 13 <fieldset style="display: flex;"> | |
| 14 <legend>Fieldset with display: flex</legend> | |
| 15 <div>these fields</div> | |
| 16 <div>shouldn't be</div> | |
| 17 <div>stacked vertically</div> | |
| 18 </fieldset> | |
| 19 </body> | |
| 20 </html> | |
|
Manuel Rego
2016/07/20 06:00:23
And last thing about the test,
I don't see any goo
Gleb Lanbin
2016/07/21 18:25:31
Done.
| |
| OLD | NEW |