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

Unified Diff: LayoutTests/fast/multicol/layers-in-multicol-expected.html

Issue 803683002: Impl-side painting for virtual/regionbasedmulticol/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/multicol/layers-in-multicol-expected.html
diff --git a/LayoutTests/fast/multicol/layers-in-multicol-expected.html b/LayoutTests/fast/multicol/layers-in-multicol-expected.html
deleted file mode 100644
index 68a78590cf1aa46a648549688e5dc4659ea999ae..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/layers-in-multicol-expected.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!DOCTYPE html>
-<style>
- .multicol {
- width: 300px;
- height: 100px;
- line-height: 20px;
- border: 5px solid maroon;
- }
- .column {
- width: 100px;
- float: left;
- }
- .multicol[dir="rtl"] > .column {
- float: right;
- }
- .block {
- display: inline-block;
- width: 1em;
- height: 10px;
- background-color: green;
- }
- .opacity {
- opacity: 0.5;
- color: green;
- }
- .relative {
- position: relative;
- top: -4px;
- color: green;
- }
-</style>
-<p>
- Test layers which are fully contained within a single column.
-</p>
-LTR:
-<div class="multicol">
- <div class="column">
- line1<br>
- line2<br>
- line3<br>
- line4<br>
- line5<br>
- </div>
- <div class="column">
- line6<br>
- <div class="block"></div> line7<br>
- line8<br>
- <span class="relative">relative9</span><br>
- line10<br>
- </div>
- <div class="column">
- line11<br>
- line12<br>
- <span class="opacity">opacity13</span><br>
- line14
- </div>
-</div>
-
-RTL:
-<div class="multicol" dir="rtl">
- <div class="column">
- line1<br>
- line2<br>
- line3<br>
- line4<br>
- line5<br>
- </div>
- <div class="column">
- line6<br>
- <div class="block"></div> line7<br>
- line8<br>
- <span class="relative">relative9</span><br>
- line10<br>
- </div>
- <div class="column">
- line11<br>
- line12<br>
- <span class="opacity">opacity13</span><br>
- line14
- </div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698