diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html')
-rw-r--r-- | layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html b/layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html new file mode 100644 index 000000000..ac2fcea7f --- /dev/null +++ b/layout/reftests/w3c-css/submitted/background/border-image-repeat-space-5-ref-1.html @@ -0,0 +1,177 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>CSS Border Image: border-image-repeat: space</title> + <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com"> + <link rel="author" title="Mozilla" href="https://www.mozilla.org"> + <link rel="match" href="border-image-repeat-space-5-ref-2.html"> + <style type="text/css"> + .outer { + width: 135px; + height: 135px; + } + .inner1 { + position: absolute; + top: 0px; + left: 0px; + width: 27px; + height: 27px; + background-image: url("border.png"); + } + .inner2_1 { + position: absolute; + top: 0px; + left: 27px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px 0px; + } + .inner2_2 { + position: absolute; + top: 0px; + left: 54px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px 0px; + } + .inner2_3 { + position: absolute; + top: 0px; + left: 81px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px 0px; + } + .inner3 { + position: absolute; + top: 0px; + left: 108px; + width: 27px; + height: 27px; + background-image: url("border.png"); + } + .inner4_1 { + position: absolute; + top: 27px; + left: 0px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: 0px -27px; + } + .inner4_2 { + position: absolute; + top: 54px; + left: 0px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: 0px -27px; + } + .inner4_3 { + position: absolute; + top: 81px; + left: 0px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: 0px -27px; + } + .inner5_1 { + position: absolute; + top: 27px; + left: 108px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -54px -27px; + } + .inner5_2 { + position: absolute; + top: 54px; + left: 108px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -54px -27px; + } + .inner5_3 { + position: absolute; + top: 81px; + left: 108px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -54px -27px; + } + .inner6 { + position: absolute; + top: 108px; + left: 0px; + width: 27px; + height: 27px; + background-image: url("border.png"); + } + .inner7_1 { + position: absolute; + top: 108px; + left: 27px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px -54px; + } + .inner7_2 { + position: absolute; + top: 108px; + left: 54px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px -54px; + } + .inner7_3 { + position: absolute; + top: 108px; + left: 81px; + width: 27px; + height: 27px; + background-image: url("border.png"); + background-position: -27px -54px; + } + .inner8 { + position: absolute; + top: 108px; + left: 108px; + width: 27px; + height: 27px; + background-image: url("border.png"); + } + </style> + </head> + <body> + <div class="outer"> + <div class="inner1"></div> + <div class="inner2_1"></div> + <div class="inner2_2"></div> + <div class="inner2_3"></div> + <div class="inner3"></div> + <div class="inner4_1"></div> + <div class="inner4_2"></div> + <div class="inner4_3"></div> + <div class="inner5_1"></div> + <div class="inner5_2"></div> + <div class="inner5_3"></div> + <div class="inner6"></div> + <div class="inner7_1"></div> + <div class="inner7_2"></div> + <div class="inner7_3"></div> + <div class="inner8"></div> + </div> + </body> +</html> + |