diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html new file mode 100644 index 0000000..84d7421 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html @@ -0,0 +1,20 @@ +<html> + <head> + <style> + ul { + list-style-type: none; + } + li { + display: inline-block; + } + li:after { + margin: 0 0 0 1px; + } + </style> + </head> + <body> + <ul> + <li>Should not wrap</li> + </ul> + </body> +</html> |