Lines Matching +full:url +full:- +full:parse
2 use url::Url;
26 pattern:debugger_visualizer-.*\.exe \(embedded NatVis ".*-[0-9]+\.natvis"\)
28 base_url : "http://example.org/foo/bar" [Type: url::Url]
29 [<Raw View>] [Type: url::Url]
34 url_with_non_special_scheme : "non-special://test/x" [Type: url::Url]
35 [<Raw View>] [Type: url::Url]
36 [scheme] : "non-special"
40 url_with_user_pass_port_query_fragments : "http://user:pass@foo:21/bar;par?b#c" [Type: url::Url]
41 [<Raw View>] [Type: url::Url]
50 url_blob : "blob:https://example.com:443/" [Type: url::Url]
51 [<Raw View>] [Type: url::Url]
55 url_with_base : "http://example.org/a%2fc" [Type: url::Url]
56 [<Raw View>] [Type: url::Url]
61 url_with_base_replaced : "http://[::7f00:1]/" [Type: url::Url]
62 [<Raw View>] [Type: url::Url]
67 url_with_comma : "data:text/html,test#test" [Type: url::Url]
68 [<Raw View>] [Type: url::Url]
75 // Copied from https://github.com/web-platform-tests/wpt/blob/master/url/ in test_url_visualizer()
76 let base_url = Url::parse("http://example.org/foo/bar").unwrap(); in test_url_visualizer()
79 let url_with_non_special_scheme = Url::parse("non-special://:@test/x").unwrap(); in test_url_visualizer()
80 assert_eq!(url_with_non_special_scheme.as_str(), "non-special://test/x"); in test_url_visualizer()
83 Url::parse("http://user:pass@foo:21/bar;par?b#c").unwrap(); in test_url_visualizer()
89 let url_blob = Url::parse("blob:https://example.com:443/").unwrap(); in test_url_visualizer()