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

Unified Diff: LayoutTests/imported/csswg-test/css-writing-modes-3/inline-table-alignment-005.xht

Issue 1295773004: update-w3c-deps import using blink c936ac9d274f959a4b5908db6835bcd612fb1a9e: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/imported/csswg-test/css-writing-modes-3/inline-table-alignment-005.xht
diff --git a/LayoutTests/imported/csswg-test/css-writing-modes-3/inline-block-alignment-005.xht b/LayoutTests/imported/csswg-test/css-writing-modes-3/inline-table-alignment-005.xht
similarity index 65%
copy from LayoutTests/imported/csswg-test/css-writing-modes-3/inline-block-alignment-005.xht
copy to LayoutTests/imported/csswg-test/css-writing-modes-3/inline-table-alignment-005.xht
index 7a8eda7a26b7b9cef6cc9640ac0f5b7a7049a4a2..de675dd95046763b7ab2788954e5c0c122debcc9 100644
--- a/LayoutTests/imported/csswg-test/css-writing-modes-3/inline-block-alignment-005.xht
+++ b/LayoutTests/imported/csswg-test/css-writing-modes-3/inline-table-alignment-005.xht
@@ -1,27 +1,27 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
- <title>CSS Writing Modes Test: inline-block alignment - central alignment with vertical layout</title>
+ <title>CSS Writing Modes Test: inline-table alignment - central alignment with vertical layout</title>
<link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.com" />
- <link rel="reviewer" title="Gerard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2015-07-20 -->
+ <link rel="reviewer" title="G?rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2015-08-13 -->
<link rel="help" title="CSS3 Writing modes: 4.3. Atomic Inline Baseline" href="http://www.w3.org/TR/css-writing-modes-3/#replaced-baselines" />
- <link rel="help" title="CSS2.1 9.2.2 Inline-level elements and inline boxes" href="http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" />
- <link rel="match" href="inline-block-alignment-003-ref.xht" />
- <meta name="assert" content="This test checks the generation of inline-block baseline. When 'writing-mode' is 'vertical-lr' and when 'text-orientation' is 'upright', then the central baseline is used as the dominant baseline." />
+ <link rel="help" title="10.8.1 Leading and half-leading" href="http://www.w3.org/TR/CSS21/visudet.html#leading" />
+ <link rel="match" href="inline-table-alignment-003-ref.xht" />
+ <meta name="assert" content="This test checks the generation of inline-table baseline. When 'writing-mode' is 'vertical-lr' and when 'text-orientation' is 'upright', then the central baseline is used as the dominant baseline." />
<meta name="flags" content="ahem" />
<style type="text/css"><![CDATA[
div#lr-upright
{
color: orange;
- font: 3.75em/1 Ahem; /* computes to 60px */
+ font: 3.75em/1 Ahem; /* computes to 60px/60px */
height: 4em;
-webkit-writing-mode: vertical-lr;
-webkit-text-orientation: upright;
}
- div#inline-block
+ div#inline-table
{
- display: inline-block;
+ display: inline-table;
padding-left: 0.5em; /* computes to 60px */
font-size: 2em; /* computes to 120px */
/*
@@ -30,19 +30,19 @@
*/
}
- span.block-descendant
+ span.row
{
- display: block;
+ display: table-row;
}
- span#first-line-box
+ span#first
{
- color: yellow;
+ color: blue;
}
- span#last-line-box
+ span#last
{
- color: blue;
+ color: yellow;
}
span#orange30
@@ -62,9 +62,9 @@
<p>Test passes if 2 orange squares are centered with respect to a blue square.</p>
- <div id="lr-upright">A<div id="inline-block">
- <span class="block-descendant" id="first-line-box">I</span>
- <span class="block-descendant" id="last-line-box">B</span>
+ <div id="lr-upright">A<div id="inline-table">
+ <span class="row" id="first">F</span>
+ <span class="row" id="last">L</span>
</div><span id="orange30">O</span></div>
</body>

Powered by Google App Engine
This is Rietveld 408576698