Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: LayoutTests/fast/css/first-letter-render-quote-expected.html

Issue 667263002: Add layout test for first-letter and render quote. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/first-letter-render-quote-expected.html
diff --git a/LayoutTests/fast/css/first-letter-render-quote-expected.html b/LayoutTests/fast/css/first-letter-render-quote-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..9902ae508f2a5b0389bc8e9e26e8ae385fd5b507
--- /dev/null
+++ b/LayoutTests/fast/css/first-letter-render-quote-expected.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<style>
+html, body { margin-left: 0; }
Xianzhu 2014/10/22 17:39:25 Why setting only margin-left? (or perhaps you coul
+.quote:before { content: open-quote; }
+.green { color: green; }
+</style>
+<p>Test passes if you see a quote on one line and a green B on the second line.</p>
+<div class="quote"></div>
+<table cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="green">B</td>
+ </tr>
+</table>

Powered by Google App Engine
This is Rietveld 408576698