| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,11 +1,4 @@ | |||
| 1 | - features: | ||
| 2 | - - name: url | ||
| 3 | - files: | ||
| 4 | - - "*" | ||
| 5 | - - "!url-statics-canparse.*" | ||
| 6 | - - name: url-canparse | ||
| 7 | - files: | ||
| 8 | - - url-statics-canparse.* | ||
| 9 | - - name: base | ||
| 10 | - files: | ||
| 11 | - - a-element* | ||
| 1 | + rules: | ||
| 2 | + - url-statics-canparse.*: [url-canparse] | ||
| 3 | + - a-element*: [base, url] | ||
| 4 | + - "*": [url] | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1900,6 +1900,7 @@ | |||
| 1900 | 1900 | "href": "https://domain.com:443", | |
| 1901 | 1901 | "new_value": "\u00098080", | |
| 1902 | 1902 | "expected": { | |
| 1903 | + "href": "https://domain.com:8080/", | ||
| 1903 | 1904 | "port": "8080" | |
| 1904 | 1905 | } | |
| 1905 | 1906 | }, | |
@@ -1908,6 +1909,7 @@ | |||
| 1908 | 1909 | "href": "wpt++://domain.com:443", | |
| 1909 | 1910 | "new_value": "\u00098080", | |
| 1910 | 1911 | "expected": { | |
| 1912 | + "href": "wpt++://domain.com:8080", | ||
| 1911 | 1913 | "port": "8080" | |
| 1912 | 1914 | } | |
| 1913 | 1915 | }, | |
@@ -1916,20 +1918,23 @@ | |||
| 1916 | 1918 | "href": "https://www.google.com:4343", | |
| 1917 | 1919 | "new_value": "4wpt", | |
| 1918 | 1920 | "expected": { | |
| 1921 | + "href": "https://www.google.com:4/", | ||
| 1919 | 1922 | "port": "4" | |
| 1920 | 1923 | } | |
| 1921 | 1924 | }, | |
| 1922 | 1925 | { | |
| 1923 | 1926 | "href": "https://domain.com:3000", | |
| 1924 | 1927 | "new_value": "\n\t80\n\t80\n\t", | |
| 1925 | 1928 | "expected": { | |
| 1929 | + "href": "https://domain.com:8080/", | ||
| 1926 | 1930 | "port": "8080" | |
| 1927 | 1931 | } | |
| 1928 | 1932 | }, | |
| 1929 | 1933 | { | |
| 1930 | 1934 | "href": "https://domain.com:3000", | |
| 1931 | 1935 | "new_value": "\n\n\t\t", | |
| 1932 | 1936 | "expected": { | |
| 1937 | + "href": "https://domain.com:3000/", | ||
| 1933 | 1938 | "port": "3000" | |
| 1934 | 1939 | } | |
| 1935 | 1940 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4373,6 +4373,52 @@ | |||
| 4373 | 4373 | "search": "", | |
| 4374 | 4374 | "hash": "" | |
| 4375 | 4375 | }, | |
| 4376 | + "Astral code point followed by a trailing character in the userinfo", | ||
| 4377 | + { | ||
| 4378 | + "input": "http://😀x@host/", | ||
| 4379 | + "base": null, | ||
| 4380 | + "href": "http://%F0%9F%98%80x@host/", | ||
| 4381 | + "origin": "http://host", | ||
| 4382 | + "protocol": "http:", | ||
| 4383 | + "username": "%F0%9F%98%80x", | ||
| 4384 | + "password": "", | ||
| 4385 | + "host": "host", | ||
| 4386 | + "hostname": "host", | ||
| 4387 | + "port": "", | ||
| 4388 | + "pathname": "/", | ||
| 4389 | + "search": "", | ||
| 4390 | + "hash": "" | ||
| 4391 | + }, | ||
| 4392 | + { | ||
| 4393 | + "input": "http://a:😀x@host/", | ||
| 4394 | + "base": null, | ||
| 4395 | + "href": "http://a:%F0%9F%98%80x@host/", | ||
| 4396 | + "origin": "http://host", | ||
| 4397 | + "protocol": "http:", | ||
| 4398 | + "username": "a", | ||
| 4399 | + "password": "%F0%9F%98%80x", | ||
| 4400 | + "host": "host", | ||
| 4401 | + "hostname": "host", | ||
| 4402 | + "port": "", | ||
| 4403 | + "pathname": "/", | ||
| 4404 | + "search": "", | ||
| 4405 | + "hash": "" | ||
| 4406 | + }, | ||
| 4407 | + { | ||
| 4408 | + "input": "http://😀@host/", | ||
| 4409 | + "base": null, | ||
| 4410 | + "href": "http://%F0%9F%98%80@host/", | ||
| 4411 | + "origin": "http://host", | ||
| 4412 | + "protocol": "http:", | ||
| 4413 | + "username": "%F0%9F%98%80", | ||
| 4414 | + "password": "", | ||
| 4415 | + "host": "host", | ||
| 4416 | + "hostname": "host", | ||
| 4417 | + "port": "", | ||
| 4418 | + "pathname": "/", | ||
| 4419 | + "search": "", | ||
| 4420 | + "hash": "" | ||
| 4421 | + }, | ||
| 4376 | 4422 | { | |
| 4377 | 4423 | "input": "https://localhost?q=🔥", | |
| 4378 | 4424 | "base": null, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -72,7 +72,7 @@ | |||
| 72 | 72 | "path": "streams" | |
| 73 | 73 | }, | |
| 74 | 74 | "url": { | |
| 75 | - "commit": "b63305b743ed9ce2725d4ae09c5c8f0c40d8e6e1", | ||
| 75 | + "commit": "4832db47614f5f48cc57374cbf5c1f70937fad48", | ||
| 76 | 76 | "path": "url" | |
| 77 | 77 | }, | |
| 78 | 78 | "urlpattern": { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments