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

Unified Diff: LayoutTests/fast/multicol/progression-reverse-overflow-expected.html

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master (fixed the DOS-style line break issue there) Created 6 years, 9 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/multicol/progression-reverse-overflow-expected.html
diff --git a/LayoutTests/fast/multicol/progression-reverse-overflow-expected.html b/LayoutTests/fast/multicol/progression-reverse-overflow-expected.html
deleted file mode 100644
index a4fd0d6fc9141fe87481974bbda6bd092b5c9689..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/progression-reverse-overflow-expected.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<style>
- div.test {
- width: 100px;
- height: 100px;
- -webkit-column-width: 100px;
- -webkit-column-gap: 0;
- column-width: 100px;
- column-gap: 0;
- column-fill: auto;
- overflow: hidden;
- }
-
- div.test > div {
- -webkit-logical-height: 100%;
- }
-
- div.test > div:first-child {
- background-color: red;
- }
-
- div.test > div:last-child {
- background-color: green;
- }
-</style>
-<div class="test" style="direction: rtl;">
- <div></div><div></div>
-</div>
-<div class="test">
- <div></div><div></div>
-</div>
-<div class="test" style="direction: rtl;">
- <div></div><div></div>
-</div>
-<div class="test" style="-webkit-writing-mode: vertical-lr; direction: rtl;">
- <div></div><div></div>
-</div>
-<div class="test" style="-webkit-writing-mode: vertical-lr; direction: rtl;">
- <div></div><div></div>
-</div>
-<div class="test" style="direction: rtl;">
- <div></div><div></div>
-</div>
-<script>
- var tests = document.querySelectorAll("div.test");
- for (var i = 0; i < tests.length; ++i) {
- var test = tests[i];
- if (test.scrollLeft)
- test.scrollLeft = 0;
- else
- test.scrollLeft = test.scrollWidth;
- if (test.scrollTop)
- test.scrollTop = 0;
- else
- test.scrollTop = test.scrollHeight;
- }
-</script>
« no previous file with comments | « LayoutTests/fast/multicol/progression-reverse-overflow.html ('k') | LayoutTests/fast/multicol/recursive-split-flow-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698