Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!doctype html> |
michael@0 | 2 | <html><head> |
michael@0 | 3 | <!-- This tests behavior specified in CSS Syntax Level 3, |
michael@0 | 4 | as of the Editor's Draft 19 June 2013: |
michael@0 | 5 | http://dev.w3.org/csswg/css-syntax/ --> |
michael@0 | 6 | <title>\0 in CSS</title> |
michael@0 | 7 | <style> |
michael@0 | 8 | p#a:before { content: "\0x" } |
michael@0 | 9 | p#b:before { content: "\00x" } |
michael@0 | 10 | p#c:before { content: "\000x" } |
michael@0 | 11 | p#d:before { content: "\0000x" } |
michael@0 | 12 | p#e:before { content: "\00000x" } |
michael@0 | 13 | p#f:before { content: "\000000x" } |
michael@0 | 14 | p#g:before { content: "\0 x" } |
michael@0 | 15 | p#h:before { content: "\00 x" } |
michael@0 | 16 | p#i:before { content: "\000 x" } |
michael@0 | 17 | p#j:before { content: "\0000 x" } |
michael@0 | 18 | p#k:before { content: "\00000 x" } |
michael@0 | 19 | p#l:before { content: "\000000 x" } |
michael@0 | 20 | </style> |
michael@0 | 21 | </head><body> |
michael@0 | 22 | <p id="a">(a)</p> |
michael@0 | 23 | <p id="b">(b)</p> |
michael@0 | 24 | <p id="c">(c)</p> |
michael@0 | 25 | <p id="d">(d)</p> |
michael@0 | 26 | <p id="e">(e)</p> |
michael@0 | 27 | <p id="f">(f)</p> |
michael@0 | 28 | <p id="g">(g)</p> |
michael@0 | 29 | <p id="h">(h)</p> |
michael@0 | 30 | <p id="i">(i)</p> |
michael@0 | 31 | <p id="j">(j)</p> |
michael@0 | 32 | <p id="k">(k)</p> |
michael@0 | 33 | <p id="l">(l)</p> |
michael@0 | 34 | </body></html> |