Commit ac758278 authored by Koji Ishii's avatar Koji Ishii Committed by Commit Bot

Disable kerning for css/css-pseudo/first-letter-opacity-float-001.html

This test has "P" in a float with "ASS" in an inline
formatting context, while its ref has "P" and "ASS" in the
same inline formatting context.

This patch disables kerning to ensure the same rendering.

TBR=eae@chromium.org

Bug: 636993
Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng
Change-Id: Ie36c9bc8885467e1272f4a7ccb936791362cdaea
Reviewed-on: https://chromium-review.googlesource.com/1142049Reviewed-by: default avatarKoji Ishii <kojii@chromium.org>
Commit-Queue: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#576211}
parent d9e49db7
......@@ -146,7 +146,6 @@ crbug.com/591099 external/wpt/css/css-position/position-relative-table-tfoot-lef
crbug.com/591099 external/wpt/css/css-position/position-relative-table-thead-top.html [ Failure ]
crbug.com/591099 external/wpt/css/css-position/position-relative-table-tr-top-absolute-child.html [ Failure ]
crbug.com/591099 external/wpt/css/css-position/position-sticky-writing-modes.html [ Failure ]
crbug.com/591099 external/wpt/css/css-pseudo/first-letter-opacity-float-001.html [ Failure ]
crbug.com/591099 external/wpt/css/css-rhythm/ [ Skip ]
crbug.com/591099 external/wpt/css/css-scroll-anchoring/clipped-scrollers-skipped.html [ Failure ]
crbug.com/591099 external/wpt/css/css-scroll-anchoring/opt-out.html [ Failure ]
......
<!DOCTYPE html>
<style>
/* Disable kerning because kerning may differ for different node tree. */
html { font-kerning: none; font-feature-settings: "kern" off; }
</style>
<div><span style="opacity:0.5">P</span>ASS</div>
......@@ -7,6 +7,8 @@
<style>
#one::first-letter { float: left; opacity: 0.5 }
#two { opacity: 0.5 }
/* Disable kerning because kerning may differ for different node tree. */
html { font-kerning: none; font-feature-settings: "kern" off; }
</style>
<div id="one">PASS</div>
<div id="two"></div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment