auto merge of #613 : metajack/servo/basic-width-reftest, r=pcwalton

This commit is contained in:
bors-servo 2013-07-22 10:18:25 -07:00
commit 9b06d01891
3 changed files with 33 additions and 0 deletions

View file

@ -1 +1,2 @@
== basic_width_px.html basic_width_em.html
== hello_a.html hello_b.html

View file

@ -0,0 +1,16 @@
<html>
<head>
<style>
html {
font-size: 20px;
}
p {
width: 10em;
border: solid 1px black;
}
</style>
</head>
<body>
<p>hello, wide world</p>
</body>
</html>

View file

@ -0,0 +1,16 @@
<html>
<head>
<style>
html {
font-size: 20px;
}
p {
width: 200px;
border: solid 1px black;
}
</style>
</head>
<body>
<p>hello, wide world</p>
</body>
</html>