diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-02-17 15:56:58 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-02-17 15:56:58 +0000 |
commit | 66f078e7f124c357eae417c01837e25761701128 (patch) | |
tree | 1417c9fecdedea01bb74ce7b977649fe2a433edf /test/lua | |
parent | 61a70903cc1a37c51fda5a80ee5bd0a1c838a1fe (diff) | |
download | rspamd-66f078e7f124c357eae417c01837e25761701128.tar.gz rspamd-66f078e7f124c357eae417c01837e25761701128.zip |
[Project] Css: Start semantic parsing for rules
Diffstat (limited to 'test/lua')
-rw-r--r-- | test/lua/unit/css.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lua/unit/css.lua b/test/lua/unit/css.lua index e040a6fd3..a5a8f533f 100644 --- a/test/lua/unit/css.lua +++ b/test/lua/unit/css.lua @@ -50,7 +50,7 @@ p { p:first-child { color: blue; } -a[target=_blank] { +a[target=_blank] #id{ background-color: yellow; } * { @@ -75,7 +75,7 @@ body { } /* Style the topnav links */ -.topnav a { +.topnav a{ float: left; display: block; color: #f2f2f2; @@ -85,7 +85,7 @@ body { } /* Clear floats after the columns */ -.row:after { +.row:after{ content: ""; display: table; clear: both; |