Commit b3ba3cc7 authored by Sangwoo Ko's avatar Sangwoo Ko Committed by Commit Bot

Add table { text-indent: initial } as UA style

As per https://html.spec.whatwg.org/multipage/rendering.html#tables-2 ,
text-indent for table should be initial.

Bug: 999088
Change-Id: I59833ff9684f04916f112c585be0ceafbfe6d7c4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2395900Reviewed-by: default avatarRune Lillesveen <futhark@chromium.org>
Commit-Queue: Sang Woo Ko <sangwoo108@chromium.org>
Cr-Commit-Position: refs/heads/master@{#804807}
parent 08adb393
......@@ -248,7 +248,8 @@ table {
border-collapse: separate;
border-spacing: 2px;
border-color: gray;
box-sizing: border-box
box-sizing: border-box;
text-indent: initial
}
thead {
......
This is a testharness.js-based test.
PASS Computed 'display' on table should match html spec
PASS Computed 'box-sizing' on table should match html spec
PASS Computed 'border-spacing' on table should match html spec
PASS Computed 'border-collapse' on table should match html spec
FAIL Computed 'text-indent' on table should match html spec assert_equals: expected "0px" but got "100px"
Harness: the test ran to completion.
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