Lines Matching refs:csstest

13     private function csstest($input, $output = null, $location = 'http://www.example.com/') {  function in css_css_loadfile_test
20 …$this->csstest('#test { background: url(\'test/test.png\'); }', '#test { background: url(\'http://…
24 $this->csstest('#test { background: url("/test/test.png"); }');
25 $this->csstest('#test { background: url(\'/test/test.png\'); }');
29 $this->csstest('#test { background: url("http://www.test.com/test/test.png"); }');
30 $this->csstest('#test { background: url("https://www.test.com/test/test.png"); }');
31 $this->csstest('#test { background: url(\'http://www.test.com/test/test.png\'); }');
32 $this->csstest('#test { background: url(\'https://www.test.com/test/test.png\'); }');
36 … $this->csstest('@import "test/test.png";', '@import "http://www.example.com/test/test.png";');
37 … $this->csstest('@import \'test/test.png\';', '@import \'http://www.example.com/test/test.png\';');
38 …$this->csstest('@import url(test/test.png);', '@import url(http://www.example.com/test/test.png);'…
45 $this->csstest('@import url(/test/test.png);');
46 $this->csstest('@import url("/test/test.png");');
50 $this->csstest('@import "http://www.test.com/test/test.png";');
51 $this->csstest('@import "https://www.test.com/test/test.png";');
52 $this->csstest('@import \'http://www.test.com/test/test.png\';');
53 $this->csstest('@import \'https://www.test.com/test/test.png\';');
54 $this->csstest('@import url(http://www.test.com/test/test.png);');
81 $this->csstest('@import "test.less"', '@import "\foo\bar/test.less"');
82 $this->csstest('@import \'test.less\'', '@import \'\foo\bar/test.less\'');
83 $this->csstest('@import url(test.less)', '@import url(\foo\bar/test.less)');
84 $this->csstest('@import "abc/test.less"', '@import "\foo\bar/abc/test.less"');
86 $this->csstest('@import "test.less"', '@import "/foo/bar/test.less"');
87 $this->csstest('@import \'test.less\'', '@import \'/foo/bar/test.less\'');
88 $this->csstest('@import url(test.less)', '@import url(/foo/bar/test.less)');
89 $this->csstest('@import "abc/test.less"', '@import "/foo/bar/abc/test.less"');