diff options
author | schenney@chromium.org <schenney@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2013-04-05 21:37:07 +0000 |
---|---|---|
committer | schenney@chromium.org <schenney@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2013-04-05 21:37:07 +0000 |
commit | e46ba207ce08b6c24d43a58067fe82a7c5632a38 (patch) | |
tree | 8d4eb341dc556e9c0120905c5c765123f86d9777 /third_party/WebKit/LayoutTests/fast/css-generated-content/margin-empty-content-expected.html | |
parent | 8191b92ee3ceb3f42756fdf139ed084f5acfb811 (diff) | |
download | chromium_src-e46ba207ce08b6c24d43a58067fe82a7c5632a38.zip chromium_src-e46ba207ce08b6c24d43a58067fe82a7c5632a38.tar.gz chromium_src-e46ba207ce08b6c24d43a58067fe82a7c5632a38.tar.bz2 |
Padding applied twice for empty generated RenderInlines
Merge http://trac.webkit.org/changeset/147505
The padding for empty generated content render objects is
incorrectly applied twice. Regression from r140693.
Add test for empty generated content with padding.
R=eae@chromium.org,leviw@chromium.org
BUG=225054
Review URL: https://codereview.chromium.org/13724005
git-svn-id: svn://svn.chromium.org/blink/trunk@147681 bbb929c8-8fbe-4397-9dbb-9b2b20218538
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> |