-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
css-lists: Elements with 'display:list-item' should respect
'counter-increment' and 'counter-set' properties ListItemOrdinal::CalcValue() should refer to these properties. Bug: 1157365 Change-Id: I30bb015935b4cd076a5054dddee062d73145c089 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2583595 Reviewed-by: Oriol Brufau <[email protected]> Reviewed-by: Koji Ishii <[email protected]> Commit-Queue: Kent Tamura <[email protected]> Cr-Commit-Position: refs/heads/master@{#835809}
- Loading branch information
1 parent
7ac57af
commit a8329d3
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
|
||
<ol> | ||
<details><summary>summary</summary></details> | ||
<li value="1">1</li> | ||
<li value="2">2 <details><summary>summary</summary></details></li> | ||
<li value="3">3</li> | ||
<details><summary>summary</summary></details> | ||
<li value="4">4</li> | ||
</ol> | ||
|
||
<ol> | ||
<summary>summary</summary> | ||
<li value="1">1</li> | ||
<li value="2">2 <summary>summary</summary></li> | ||
<li value="3">3</li> | ||
<summary>summary</summary> | ||
<li value="4">4</li> | ||
</ol> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<title>Check if SUMMARY has 'counter-increment: list-item 0'</title> | ||
<link rel="match" href="summary-in-ol-ref.html"> | ||
|
||
<ol> | ||
<details><summary>summary</summary></details> | ||
<li>1</li> | ||
<li>2 <details><summary>summary</summary></details></li> | ||
<li>3</li> | ||
<details><summary>summary</summary></details> | ||
<li>4</li> | ||
</ol> | ||
|
||
<ol> | ||
<summary>summary</summary> | ||
<li>1</li> | ||
<li>2 <summary>summary</summary></li> | ||
<li>3</li> | ||
<summary>summary</summary> | ||
<li>4</li> | ||
</ol> | ||
|