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/box-properties/box-sizing-3.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/box-properties/box-sizing-3.html')
-rw-r--r-- | layout/reftests/box-properties/box-sizing-3.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/layout/reftests/box-properties/box-sizing-3.html b/layout/reftests/box-properties/box-sizing-3.html new file mode 100644 index 000000000..dd4391d4c --- /dev/null +++ b/layout/reftests/box-properties/box-sizing-3.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>test of box-sizing</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <meta http-equiv="Content-Style-Type" content="text/css"> + <style type="text/css"> + + body { font-size: 10px; line-height: 1; } + table { border-spacing: 0; margin: 0; } + td { border: 1px solid; padding: 1px solid; } + + td > div { width: 100px; } + + td#bscontent > div > div { box-sizing: content-box; } + td#bsborder > div > div { box-sizing: border-box; } + + td > div > div { + margin-left: 1%; + border-left: 2px solid; + padding-left: 4%; + padding-right: 8%; + border-right: 16px solid; + margin-right: 32%; + + background: yellow; + margin-bottom: 1px; + } + + </style> +</head> +<body> + +<table><tr> + +<td id="bscontent"><div> + +<!-- box-sizing: content-box --> +<div style="width: auto">A B</div> +<div style="width: -moz-max-content">A B</div> +<div style="width: -moz-min-content">A B</div> +<div style="width: -moz-fit-content">A B</div> +<div style="width: -moz-available">A B</div> +<div style="width: 50px">A B</div> +<div style="width: 60%">A B</div> + +</div></td> + +<td id="bsborder"><div> +<!-- box-sizing: border-box --> +<div style="width: auto">A B</div> +<div style="width: -moz-max-content">A B</div> +<div style="width: -moz-min-content">A B</div> +<div style="width: -moz-fit-content">A B</div> +<div style="width: -moz-available">A B</div> +<div style="width: 50px">A B</div> +<div style="width: 60%">A B</div> + +</div></td> + +</tr></table> + +</body> +</html> |