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

Unified Diff: third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html

Issue 2709153003: Fix repeat background position problem (Closed)
Patch Set: Created 3 years, 10 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: third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html b/third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..207c5b4588958505025b57466de2c87da6e22262
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html
@@ -0,0 +1,48 @@
+<!doctype html>
+<title>Test non-top-left background-position anchors together with repeating backgrounds</title>
+<style>
+ body { margin: 0 }
+ .rightnormal {
+ width: 30px;
+ height: 100px;
+ }
+ .rightnarrow {
+ width: 10px;
+ height: 100px;
+ }
+ .bottomnormal {
+ width: 100px;
+ height: 30px;
+ }
+ .bottomnarrow {
+ width: 100px;
+ height: 10px;
+ }
+ .limecolor {
+ background-color: lime;
+ }
+ .redcolor {
+ background-color: red;
+ }
+</style>
+<table cellpadding='0' cellspacing='0'>
+<tr>
+<td>
+<div class='rightnarrow redcolor'</div>
+</td>
+<td>
+<div class='rightnormal limecolor'</div>
+</td>
+<td>
+<div class='rightnormal redcolor'</div>
+</td>
+<td>
+<div class='rightnormal limecolor'</div>
+</td>
+</tr>
+</table>
+
+<div class='bottomnarrow redcolor'></div>
+<div class='bottomnormal limecolor'></div>
+<div class='bottomnormal redcolor'></div>
+<div class='bottomnormal limecolor'></div>

Powered by Google App Engine
This is Rietveld 408576698