Move calc-basic.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent debad3fa35
commit 0a6feb0c9a
4 changed files with 25 additions and 1 deletions

View file

@ -28,7 +28,6 @@ flaky_cpu == append_style_a.html append_style_b.html
== box_shadow_spread_a.html box_shadow_spread_ref.html
== box_sizing_border_box_a.html box_sizing_border_box_ref.html
== br.html br-ref.html
== calc-basic.html calc-basic-ref.html
== canvas_as_block_element_a.html canvas_as_block_element_ref.html
== canvas_radial_gradient_a.html canvas_radial_gradient_ref.html
== case-insensitive-font-family.html case-insensitive-font-family-ref.html

View file

@ -1,19 +0,0 @@
<!DOCTYPE html>
<div id="outer">
<div id="inner">
</div>
</div>
<style>
#outer {
height: 100px;
width: 200px;
}
#inner {
height: 100%;
width: 110px;
background-color: green;
}
</style>

View file

@ -1,19 +0,0 @@
<!DOCTYPE html>
<div id="outer">
<div id="inner">
</div>
</div>
<style>
#outer {
height: 100px;
width: 200px;
}
#inner {
height: 100%;
width: calc(50px + 30%);
background-color: green;
}
</style>