poster-isvalid.html (6735B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>valid poster</title> 4 <video poster="a:foo.com"></video><!-- scheme-private --> 5 <video poster="foo:/"></video><!-- scheme-private-slash --> 6 <video poster="foo://"></video><!-- scheme-private-slash-slash --> 7 <video poster="foo:/bar.com/"></video><!-- scheme-private-path --> 8 <video poster="foo://///////"></video><!-- scheme-private-path-leading-slashes-only --> 9 <video poster="foo://///////bar.com/"></video><!-- scheme-private-path-leading-slashes-chars --> 10 <video poster="foo:////://///"></video><!-- scheme-private-path-leading-slashes-colon-slashes --> 11 <video poster="c:/foo"></video><!-- scheme-private-single-letter --> 12 <video poster="madeupscheme:/example.com/"></video><!-- scheme-private-single-slash --> 13 <video poster="file:/example.com/"></video><!-- scheme-file-single-slash --> 14 <video poster="ftps:/example.com/"></video><!-- scheme-ftps-single-slash --> 15 <video poster="gopher:/example.com/"></video><!-- scheme-gopher-single-slash --> 16 <video poster="ws:/example.com/"></video><!-- scheme-ws-single-slash --> 17 <video poster="wss:/example.com/"></video><!-- scheme-wss-single-slash --> 18 <video poster="javascript:/example.com/"></video><!-- scheme-javascript-single-slash --> 19 <video poster="mailto:/example.com/"></video><!-- scheme-mailto-single-slash --> 20 <video poster="madeupscheme:example.com/"></video><!-- scheme-private-no-slash --> 21 <video poster="ftps:example.com/"></video><!-- scheme-ftps-no-slash --> 22 <video poster="gopher:example.com/"></video><!-- scheme-gopher-no-slash --> 23 <video poster="wss:example.com/"></video><!-- scheme-wss-no-slash --> 24 <video poster="mailto:example.com/"></video><!-- scheme-mailto-no-slash --> 25 <video poster="data:text/plain,foo"></video><!-- scheme-data-no-slash --> 26 <video poster="http://user:pass@foo:21/bar;par?b#c"></video><!-- userinfo --> 27 <video poster="http://[2001::1]"></video><!-- host-ipv6 --> 28 <video poster="http://[2001::1]:80"></video><!-- host-ipv6-port --> 29 <video poster="http://f:/c"></video><!-- port-none-but-colon --> 30 <video poster="http://f:0/c"></video><!-- port-0 --> 31 <video poster="http://f:00000000000000/c"></video><!-- port-00000000000000 --> 32 <video poster="http://f:00000000000000000000080/c"></video><!-- port-00000000000000000000080 --> 33 <video poster="http://a:b@c:29/d"></video><!-- userinfo-host-port-path --> 34 <video poster="http://foo.com:b@d/"></video><!-- userinfo-username-non-alpha --> 35 <video poster="http://foo/abcd?efgh?ijkl"></video><!-- query-contains-question-mark --> 36 <video poster="http://foo/abcd#foo?bar"></video><!-- fragment-contains-question-mark --> 37 <video poster="http://example.com/foo/%2e"></video><!-- path-percent-encoded-dot --> 38 <video poster="http://example.com/%20foo"></video><!-- path-percent-encoded-space --> 39 <video poster="http://example.com/©zbar"></video><!-- path-non-ascii --> 40 <video poster="http://example.com/foo%41%7a"></video><!-- path-percent-encoded-multiple --> 41 <video poster="http://example.com/foo%91"></video><!-- path-percent-encoded-u0091 --> 42 <video poster="http://example.com/foo%00"></video><!-- path-percent-encoded-u0000 --> 43 <video poster="http://example.com/%3A%3a%3C%3c"></video><!-- path-percent-encoded-mixed-case --> 44 <video poster="http://example.com/你好你好"></video><!-- path-unicode-han --> 45 <video poster="http://example.com//foo"></video><!-- path-uFEFF --> 46 <video poster="http://example.com//foo//bar"></video><!-- path-u202E-u202D --> 47 <video poster="http://💩"></video><!-- host-is-pile-of-poo --> 48 <video poster="http💩//:foo"></video><!-- path-contains-pile-of-poo --> 49 <video poster="http://example.com/foo?💩"></video><!-- query-contains-pile-of-poo --> 50 <video poster="http://example.com/foo#💩"></video><!-- fragment-contains-pile-of-poo --> 51 <video poster="http://192.0x00A80001"></video><!-- host-192.0x00A80001 --> 52 <video poster="http://%25DOMAIN:foobar@foodomain.com"></video><!-- userinfo-username-contains-percent-encoded --> 53 <video poster="http://@www.example.com"></video><!-- userinfo-empty --> 54 <video poster="http://:b@www.example.com"></video><!-- userinfo-user-empty --> 55 <video poster="http://a:@www.example.com"></video><!-- userinfo-password-empty --> 56 <video poster="http://GOOgoo.com"></video><!-- host-exotic-whitespace --> 57 <video poster="http://www.foo。bar.com"></video><!-- host-exotic-dot --> 58 <video poster="http://Go.com"></video><!-- host-fullwidth --> 59 <video poster="http://你好你好"></video><!-- host-idn-unicode-han --> 60 <video poster="http://192.168.0.257/"></video><!-- host-IP-address-broken --> 61 <video poster="//foo/bar"></video><!-- scheme-schemeless-relative --> 62 <video poster="/"></video><!-- path-slash-only-relative --> 63 <video poster="/a/b/c"></video><!-- path-simple-relative --> 64 <video poster="/a%2fc"></video><!-- path-percent-encoded-slash-relative --> 65 <video poster="/a/%2f/c"></video><!-- path-percent-encoded-slash-plus-slashes-relative --> 66 <video poster="?"></video><!-- query-empty-no-path-relative --> 67 <video poster="#"></video><!-- fragment-empty-hash-only-no-path-relative --> 68 <video poster="#/"></video><!-- fragment-slash-relative --> 69 <video poster="#;?"></video><!-- fragment-semicolon-question-mark-relative --> 70 <video poster="#β"></video><!-- fragment-non-ascii-relative --> 71 <video poster="foo.com"></video><!-- scheme-none-relative --> 72 <video poster=":"></video><!-- path-colon-relative --> 73 <video poster=":a"></video><!-- path-leading-colon-letter-relative --> 74 <video poster=":foo.com"></video><!-- path-leading-colon-chars-relative --> 75 <video poster=":/"></video><!-- path-leading-colon-slash-relative --> 76 <video poster=":#"></video><!-- path-leading-colon-hash-relative --> 77 <video poster=":23"></video><!-- path-leading-colon-number-relative --> 78 <video poster="/:23"></video><!-- path-slash-colon-number-relative --> 79 <video poster="::"></video><!-- path-leading-colon-colon-relative --> 80 <video poster="::23"></video><!-- path-colon-colon-number-relative --> 81 <video poster="💩http://foo"></video><!-- path-starts-with-pile-of-poo --> 82 <video poster="/💩"></video><!-- path-slash-pile-of-poo --> 83 <video poster="File://foo/bar.html"></video><!-- scheme-file-uppercase --> 84 <video poster="file://C|/foo/bar"></video><!-- scheme-file-slash-slash-c-bar --> 85 <video poster="file://server/foo/bar"></video><!-- scheme-file-host-included --> 86 <video poster="file:///foo/bar.txt"></video><!-- scheme-file-host-empty --> 87 <video poster="file:"></video><!-- scheme-file-scheme-only --> 88 <video poster="file:/"></video><!-- scheme-file-slash-only --> 89 <video poster="file://"></video><!-- scheme-file-slash-slash-only --> 90 <video poster="file:///"></video><!-- scheme-file-slash-slash-slash-only --> 91 <video poster="file:test"></video><!-- scheme-file-no-slash -->