-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename
form-sizing
CSS property to field-sizing
w3c/csswg-drafts#7542 (comment) Bug: 1447058 Change-Id: Ia87e0fde1bd47eda5102da937365be268c9f92f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4930938 Reviewed-by: Ian Kilpatrick <[email protected]> Auto-Submit: Kent Tamura <[email protected]> Commit-Queue: Ian Kilpatrick <[email protected]> Cr-Commit-Position: refs/heads/main@{#1208923}
- Loading branch information
1 parent
7c2914d
commit b9e9226
Showing
8 changed files
with
41 additions
and
41 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!DOCTYPE html> | ||
<title>CSS UI: getComputedStyle().formSizing</title> | ||
<title>CSS UI: getComputedStyle().fieldSizing</title> | ||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/9251"> | ||
<link rel="author" title="Kent Tamura" href="mailto:[email protected]"> | ||
<script src="/resources/testharness.js"></script> | ||
|
@@ -8,7 +8,7 @@ | |
<body> | ||
<div id="target"></div> | ||
<script> | ||
test_computed_value('form-sizing', 'fixed'); | ||
test_computed_value('form-sizing', 'content'); | ||
test_computed_value('field-sizing', 'fixed'); | ||
test_computed_value('field-sizing', 'content'); | ||
</script> | ||
</body> |
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,18 @@ | ||
<!DOCTYPE html> | ||
<title>CSS UI: parsing field-sizing with invalid values</title> | ||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/9251"> | ||
<link rel="author" title="Kent Tamura" href="mailto:[email protected]"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/css/support/parsing-testcommon.js"></script> | ||
<body> | ||
<script> | ||
test_invalid_value('field-sizing', 'none'); | ||
test_invalid_value('field-sizing', 'legacy'); | ||
test_invalid_value('field-sizing', 'auto'); | ||
test_invalid_value('field-sizing', 'normal'); | ||
test_invalid_value('field-sizing', 'normal auto'); | ||
test_invalid_value('field-sizing', '100%'); | ||
test_invalid_value('field-sizing', '10px'); | ||
</script> | ||
</body> |
6 changes: 3 additions & 3 deletions
6
css/css-ui/parsing/form-sizing-valid.html → css/css-ui/parsing/field-sizing-valid.html
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<!DOCTYPE html> | ||
<title>CSS UI: parsing form-sizing with valid values</title> | ||
<title>CSS UI: parsing field-sizing with valid values</title> | ||
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/9251"> | ||
<link rel="author" title="Kent Tamura" href="mailto:[email protected]"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/css/support/parsing-testcommon.js"></script> | ||
<body> | ||
<script> | ||
test_valid_value('form-sizing', 'fixed'); | ||
test_valid_value('form-sizing', 'content'); | ||
test_valid_value('field-sizing', 'fixed'); | ||
test_valid_value('field-sizing', 'content'); | ||
</script> | ||
</body> |
This file was deleted.
Oops, something went wrong.
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
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
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
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