diff options
Diffstat (limited to 'layout/reftests/w3c-css/submitted/css21/replaced-sizing')
23 files changed, 483 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest-stylo.list b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest-stylo.list new file mode 100644 index 000000000..54aaed9a7 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest-stylo.list @@ -0,0 +1,10 @@ +# DO NOT EDIT! This is a auto-generated temporary list for Stylo testing +== replaced-elements-all-auto.html replaced-elements-all-auto.html +== replaced-elements-height-20.html replaced-elements-height-20.html +== replaced-elements-width-40.html replaced-elements-width-40.html +== replaced-elements-min-height-20.html replaced-elements-min-height-20.html +== replaced-elements-min-width-40.html replaced-elements-min-width-40.html +== replaced-elements-min-height-40.html replaced-elements-min-height-40.html +== replaced-elements-min-width-80.html replaced-elements-min-width-80.html +== replaced-elements-max-height-20.html replaced-elements-max-height-20.html +== replaced-elements-max-width-40.html replaced-elements-max-width-40.html diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest.list b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest.list new file mode 100644 index 000000000..b2af4ad08 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/reftest.list @@ -0,0 +1,9 @@ +== replaced-elements-all-auto.html replaced-elements-all-auto-ref.html +== replaced-elements-height-20.html replaced-elements-height-20-ref.html +== replaced-elements-width-40.html replaced-elements-width-40-ref.html +== replaced-elements-min-height-20.html replaced-elements-all-auto-ref.html +== replaced-elements-min-width-40.html replaced-elements-all-auto-ref.html +== replaced-elements-min-height-40.html replaced-elements-min-height-40-ref.html +== replaced-elements-min-width-80.html replaced-elements-min-width-80-ref.html +== replaced-elements-max-height-20.html replaced-elements-height-20-ref.html +== replaced-elements-max-width-40.html replaced-elements-width-40-ref.html diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto-ref.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto-ref.html new file mode 100644 index 000000000..5a1df9485 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto-ref.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Reference: CSS 2.1 replaced element sizing</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + span { + display: inline-block; + width: 50px; + height: 25px; + } + + </style> +</head> +<body> + +<div> + <span style="background: black;"></span>, <!-- height-25-width-50 --> + <span style="background: fuchsia;"></span>, <!-- height-25-ratio-2 --> + <span style="background: silver;"></span>, <!-- width-50-ratio-2 --> + <span style="background: blue; width: 300px"></span>, <!-- height-25-no-ratio --> + <span style="background: orange; height: 150px"></span>, <!-- width-50-no-ratio --> + <span style="background: gray; width: 200px; height: 100px"></span>, <!-- ratio-2 --> + <span style="background: aqua; width: 300px; height: 150px"></span>. <!-- no-ratio --> + +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto.html new file mode 100644 index 000000000..bc2b4593a --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-all-auto.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-all-auto-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20-ref.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20-ref.html new file mode 100644 index 000000000..503d83bd7 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20-ref.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Reference: CSS 2.1 replaced element sizing</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + span { + display: inline-block; + width: 40px; + height: 20px; + } + + </style> +</head> +<body> + +<div> + <span style="background: black;"></span>, <!-- height-25-width-50 --> + <span style="background: fuchsia;"></span>, <!-- height-25-ratio-2 --> + <span style="background: silver;"></span>, <!-- width-50-ratio-2 --> + <span style="background: blue; width: 300px"></span>, <!-- height-25-no-ratio --> + <span style="background: orange; width: 50px"></span>, <!-- width-50-no-ratio --> + <span style="background: gray"></span>, <!-- ratio-2 --> + <span style="background: aqua; width: 300px"></span>. <!-- no-ratio --> + +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20.html new file mode 100644 index 000000000..2ca34beff --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-height-20.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-height-20-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { height: 20px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-height-20.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-height-20.html new file mode 100644 index 000000000..eb2ee9844 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-height-20.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-height-20-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { max-height: 20px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-width-40.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-width-40.html new file mode 100644 index 000000000..9fb7aad4e --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-max-width-40.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-width-40-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { max-width: 40px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-20.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-20.html new file mode 100644 index 000000000..5294aadcb --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-20.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-all-auto-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { min-height: 20px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40-ref.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40-ref.html new file mode 100644 index 000000000..668be594f --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40-ref.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Reference: CSS 2.1 replaced element sizing</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + span { + display: inline-block; + width: 80px; + height: 40px; + } + + </style> +</head> +<body> + +<div> + <span style="background: black;"></span>, <!-- height-25-width-50 --> + <span style="background: fuchsia;"></span>, <!-- height-25-ratio-2 --> + <span style="background: silver;"></span>, <!-- width-50-ratio-2 --> + <span style="background: blue; width: 300px"></span>, <!-- height-25-no-ratio --> + <span style="background: orange; width: 50px; height: 150px"></span>, <!-- width-50-no-ratio --> + <span style="background: gray; width: 200px; height: 100px"></span>, <!-- ratio-2 --> + <span style="background: aqua; width: 300px; height: 150px"></span>. <!-- no-ratio --> + +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40.html new file mode 100644 index 000000000..700909ec5 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-height-40.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-min-height-40-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { min-height: 40px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-40.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-40.html new file mode 100644 index 000000000..03e6a9cba --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-40.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-all-auto-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { min-width: 40px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80-ref.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80-ref.html new file mode 100644 index 000000000..6caa1c480 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80-ref.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Reference: CSS 2.1 replaced element sizing</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + span { + display: inline-block; + width: 80px; + height: 40px; + } + + </style> +</head> +<body> + +<div> + <span style="background: black;"></span>, <!-- height-25-width-50 --> + <span style="background: fuchsia;"></span>, <!-- height-25-ratio-2 --> + <span style="background: silver;"></span>, <!-- width-50-ratio-2 --> + <span style="background: blue; width: 300px; height: 25px"></span>, <!-- height-25-no-ratio --> + <span style="background: orange; height: 150px"></span>, <!-- width-50-no-ratio --> + <span style="background: gray; width: 200px; height: 100px"></span>, <!-- ratio-2 --> + <span style="background: aqua; width: 300px; height: 150px"></span>. <!-- no-ratio --> + +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80.html new file mode 100644 index 000000000..852864aa1 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-min-width-80.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-min-width-80-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { min-width: 80px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40-ref.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40-ref.html new file mode 100644 index 000000000..c110910c4 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40-ref.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Reference: CSS 2.1 replaced element sizing</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + + span { + display: inline-block; + width: 40px; + height: 20px; + } + + </style> +</head> +<body> + +<div> + <span style="background: black;"></span>, <!-- height-25-width-50 --> + <span style="background: fuchsia;"></span>, <!-- height-25-ratio-2 --> + <span style="background: silver;"></span>, <!-- width-50-ratio-2 --> + <span style="background: blue; height: 25px"></span>, <!-- height-25-no-ratio --> + <span style="background: orange; height: 150px"></span>, <!-- width-50-no-ratio --> + <span style="background: gray"></span>, <!-- ratio-2 --> + <span style="background: aqua; height: 150px"></span>. <!-- no-ratio --> + +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40.html b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40.html new file mode 100644 index 000000000..4a8db48f6 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/replaced-elements-width-40.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>CSS Test: CSS 2.1 replaced element sizing</title> + <link rel="match" href="replaced-elements-width-40-ref.html"> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-height"> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths"> + <meta name="flags" content="should"> <!-- undefinedness in 10.3.2 --> + <style type="text/css"> + + div { width: 200px } + img { width: 40px } + + </style> +</head> +<body> + +<div> + <img src="support/height-25-width-50.svg">, + <img src="support/height-25-ratio-2.svg">, + <img src="support/width-50-ratio-2.svg">, + <img src="support/height-25-no-ratio.svg">, + <img src="support/width-50-no-ratio.svg">, + <img src="support/ratio-2.svg">, + <img src="support/no-ratio.svg">. +</div> + +</body> +</html> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-no-ratio.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-no-ratio.svg new file mode 100644 index 000000000..d04627229 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-no-ratio.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="25" preserveAspectRatio="none"> + <rect fill="blue" x="0" y="0" width="100%" height="100%" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-ratio-2.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-ratio-2.svg new file mode 100644 index 000000000..d6e71e31e --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-ratio-2.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1000 500" height="25" preserveAspectRatio="none"> + <rect fill="fuchsia" x="0" y="0" width="1000" height="500" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-width-50.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-width-50.svg new file mode 100644 index 000000000..a45d7243c --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/height-25-width-50.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="25" width="50" viewBox="0 0 1000 1000" preserveAspectRatio="none"> + <rect fill="black" x="0" y="0" width="1000" height="1000" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/no-ratio.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/no-ratio.svg new file mode 100644 index 000000000..80429f1d1 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/no-ratio.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="none"> + <rect fill="aqua" x="0" y="0" width="100%" height="100%" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/ratio-2.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/ratio-2.svg new file mode 100644 index 000000000..fe4fe7016 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/ratio-2.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1000 500" preserveAspectRatio="none"> + <rect fill="gray" x="0" y="0" width="1000" height="500" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-no-ratio.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-no-ratio.svg new file mode 100644 index 000000000..bf43cee7d --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-no-ratio.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="50" preserveAspectRatio="none"> + <rect fill="orange" x="0" y="0" width="100%" height="100%" /> +</svg> diff --git a/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-ratio-2.svg b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-ratio-2.svg new file mode 100644 index 000000000..62fa3cb42 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/css21/replaced-sizing/support/width-50-ratio-2.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1000 500" width="50" preserveAspectRatio="none"> + <rect fill="silver" x="0" y="0" width="1000" height="500" /> +</svg> |