Bug 1379436 - Add some reftests for line-height: calc(). r?xidorn draft
authorMasatoshi Kimura <VYV03354@nifty.ne.jp>
Sun, 09 Jul 2017 19:42:39 +0900
changeset 605794 d67880429ac2287bda1cf65dde0e956bfab5c137
parent 605791 f4a57fbdd6b2f8e2bc5ba86548857291d6c9f5de
child 636595 f7f6a03e7b3a46014d02a6a0c94f444ea96e8cfa
push id67518
push userVYV03354@nifty.ne.jp
push dateSun, 09 Jul 2017 12:54:18 +0000
reviewersxidorn
bugs1379436
milestone56.0a1
Bug 1379436 - Add some reftests for line-height: calc(). r?xidorn MozReview-Commit-ID: HMLWU1Wfynp
layout/reftests/css-calc/line-height-2-ref.html
layout/reftests/css-calc/line-height-2.html
layout/reftests/css-calc/reftest.list
new file mode 100644
--- /dev/null
+++ b/layout/reftests/css-calc/line-height-2-ref.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html><meta charset=utf-8>
+<style>
+.a1, .a2, .a3, .a4, .a5, .a6 { float: left; }
+.a1 { line-height: 2; }
+.a2 { line-height: 6; }
+.a3 { line-height: 6px; }
+.a4 { line-height: 6; }
+.a5 { line-height: 6; }
+.a6 { line-height: 6; }
+.a7 { line-height: 0; }
+</style>
+<p class="a1">abc<br>def</p>
+<p class="a2">abc<br>def</p>
+<p class="a3">abc<br>def</p>
+<p class="a4">abc<br>def</p>
+<p class="a5">abc<br>def</p>
+<p class="a6">abc<br>def</p>
+<p class="a7">abc<br>def</p>
new file mode 100644
--- /dev/null
+++ b/layout/reftests/css-calc/line-height-2.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html><meta charset=utf-8>
+<style>
+.a1, .a2, .a3, .a4, .a5, .a6 { float: left; }
+.a1 { line-height: calc(1*2); }
+.a2 { line-height: calc(1*2*3); }
+.a3 { line-height: calc(1*2*3*1px); }
+.a4 { line-height: calc((1*2)*3); }
+.a5 { line-height: calc(1*(2*3)); }
+.a6 { line-height: calc((1*2*3)); }
+.a7 { line-height: calc(-1); }
+</style>
+<p class="a1">abc<br>def</p>
+<p class="a2">abc<br>def</p>
+<p class="a3">abc<br>def</p>
+<p class="a4">abc<br>def</p>
+<p class="a5">abc<br>def</p>
+<p class="a6">abc<br>def</p>
+<p class="a7">abc<br>def</p>
--- a/layout/reftests/css-calc/reftest.list
+++ b/layout/reftests/css-calc/reftest.list
@@ -1,2 +1,3 @@
 == background-image-gradient-1.html background-image-gradient-1-ref.html
 == line-height-1.html line-height-1-ref.html
+fails-if(!isDebugBuild&&(!stylo||styloVsGecko)) skip-if(isDebugBuild&&(!stylo||styloVsGecko)) == line-height-2.html line-height-2-ref.html