mirror of
https://github.com/gnosygnu/xowa.git
synced 2026-03-02 03:49:30 +00:00
Css: Do not preprend selector for body [#815]
This commit is contained in:
@@ -1,3 +1,18 @@
|
||||
/*
|
||||
XOWA: the XOWA Offline Wiki Application
|
||||
Copyright (C) 2012-2020 gnosygnu@gmail.com
|
||||
|
||||
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
|
||||
or alternatively under the terms of the Apache License Version 2.0.
|
||||
|
||||
You may use XOWA according to either of these licenses as is most appropriate
|
||||
for your project on a case-by-case basis.
|
||||
|
||||
The terms of each license can be found in the source code repository:
|
||||
|
||||
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
|
||||
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
||||
*/
|
||||
package gplx.xowa.xtns.template_styles;
|
||||
|
||||
import gplx.core.tests.Gftest;
|
||||
@@ -13,32 +28,37 @@ public class XoCssTransformerTest {
|
||||
|
||||
@Test
|
||||
public void PrependBasic() {
|
||||
tstr.Test_Prepend("x {}", "a", "a x {}");
|
||||
tstr.Test_Prepend(".x {}", ".a", ".a .x{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependManyClasses() {
|
||||
tstr.Test_Prepend("x,y,z {}", "a", "a x,a y,a z {}");
|
||||
tstr.Test_Prepend("x,y,z {}", ".a", ".a x,.a y,.a z{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependManyNodes() {
|
||||
tstr.Test_Prepend("x {} y {} z {}", "a", "a x {}a y {}a z {}");
|
||||
tstr.Test_Prepend("x {} y {} z {}", ".a", ".a x{}.a y{}.a z{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependEmpty() {
|
||||
tstr.Test_Prepend("x {}{}", "a", "a x {}{}");
|
||||
tstr.Test_Prepend("x {}{}", ".a", ".a x{}{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependMediaAtBos() {
|
||||
tstr.Test_Prepend("@media {} x {}", "a", "@media {}a x {}");
|
||||
tstr.Test_Prepend("@media {} x {}", ".a", "@media {}.a x{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependMediaAtMid() {
|
||||
tstr.Test_Prepend("x {} @media {} y {}", "a", "a x {} @media {}a y {}");
|
||||
tstr.Test_Prepend("x {} @media {} y {}", ".a", ".a x{} @media {}.a y{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PrependIgnoreBody() {
|
||||
tstr.Test_Prepend("body {}", ".a", "body{}");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user