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 /testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.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 'testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.html | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.html b/testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.html new file mode 100644 index 000000000..0894bd718 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-svg/0001isvalid.html @@ -0,0 +1,130 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset=utf-8> + <title><svg>'s HTML integration points</title> + </head> + <body> + <!-- self-closed elements --> + <svg> + <title/> + <desc/> + <foreignObject height=0 width=0 /> + </svg> + + <!-- null-content elements --> + <svg> + <title></title> + <desc></desc> + <foreignObject height=0 width=0></foreignObject> + </svg> + + <!-- just white space --> + <svg> + <title> + + </title> + <desc> + + </desc> + <foreignObject height=0 width=0> + + + </foreignObject> + </svg> + + <!-- plain text --> + <svg> + <title>foo</title> + <desc>foo</desc> + <foreignObject height=0 width=0>foo</foreignObject> + </svg> + + <!-- phrasing content --> + <svg> + <title> + fee + <a href="//example.com/">fi</a> + <em>fo</em> + <svg> + <title>fum</title> + </svg> + <svg> + <title> + <svg> + <title> + <svg> + <title>Yes, this is somehow totally valid.</title> + </svg> + </title> + </svg> + </title> + </svg> + </title> + + <desc> + fee + <a href="//example.com/">fi</a> + <em>fo</em> + <svg> + <title>fum</title> + </svg> + <svg> + <title> + <svg> + <title> + <svg> + <title>Yes, this is somehow totally valid.</title> + </svg> + </title> + </svg> + </title> + </svg> + </desc> + + <foreignObject height=0 width=0> + fee + <a href="//example.com/">fi</a> + <em>fo</em> + <svg> + <title>fum</title> + </svg> + <svg> + <title> + <svg> + <title> + <svg> + <title>Yes, this is somehow totally valid.</title> + </svg> + </title> + </svg> + </title> + </svg> + </foreignObject> + </svg> + + <!-- flow content (<title> cannot have it, it only allows phrasing) --> + <svg> + <desc> + <section> + <h1>Heading</h1> + </section> + </desc> + + <foreignObject height=0 width=0> + <section> + <h1>Heading</h1> + </section> + </foreignObject> + </svg> + + <!-- metadata content not allowable in flow content (<title> and <foreignObject> cannot have this, only <desc>) --> + <svg> + <desc> + <style> /* */ </style> + <link href="/whatever" rel="stylesheet"> + <title>I'm an HTML <title>!</title> + </desc> + </svg> + </body> +</html> |