Home | History | Annotate | Download | only in extensions

Lines Matching full:http

23   EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
24 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
27 EXPECT_TRUE(script.MatchesUrl(GURL("http://woo.mail.google.com/foo")));
28 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.yahoo.com/bar")));
29 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.msn.com/baz")));
30 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.hotmail.com")));
33 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
34 EXPECT_FALSE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
41 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
42 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/")));
43 EXPECT_FALSE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
48 script.add_glob("http://mail.google.com/*");
50 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
51 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
58 EXPECT_TRUE(script.MatchesUrl(GURL("http://foo.com/bar")));
59 EXPECT_TRUE(script.MatchesUrl(GURL("http://hot.com/dog")));
67 EXPECT_TRUE(script.MatchesUrl(GURL("http://foo.com/bar")));
68 EXPECT_TRUE(script.MatchesUrl(GURL("http://baz.org/foo/bar")));
69 EXPECT_FALSE(script.MatchesUrl(GURL("http://baz.org")));
75 pattern.Parse("http://*/foo*", URLPattern::PARSE_STRICT));
79 EXPECT_TRUE(script.MatchesUrl(GURL("http://monkey.com/foobar")));
80 EXPECT_FALSE(script.MatchesUrl(GURL("http://monkey.com/hotdog")));
91 pattern.Parse("http://www.google.com/*",
98 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.google.com/foo")));
103 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.google.com/baz")));
106 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/bar")));
110 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/foo")));
114 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/foo")));
121 pattern1.Parse("http://*/foo*", URLPattern::PARSE_STRICT));
123 pattern2.Parse("http://bar/baz*", URLPattern::PARSE_STRICT));