forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[css-sizing-3] Add tests for input/textarea max-content sizing. w3c/c…
- Loading branch information
Showing
2 changed files
with
45 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,22 @@ | ||
<!DOCTYPE html> | ||
<title>Reference: max-content sizes of INPUT and TEXTAREA</title> | ||
|
||
<style> | ||
input, textarea { font: 20px monospace; white-space: pre; } | ||
</style> | ||
|
||
<p><input value="sample text"> | ||
|
||
<p><textarea class="h" rows=7 cols=12>sample text 1 sample text 1 | ||
sample text 2 sample text 2 | ||
sample text 3 sample text 3 | ||
sample text 4 sample text 4 | ||
sample text 5 sample text 5 | ||
sample text 6 sample text 6 | ||
sample text 7 sample text 7</textarea> | ||
|
||
<p><input value="sample text" style="width: 11ch"> | ||
|
||
<p><textarea class="h" rows=3 cols=27>sample text 1 sample text 1 | ||
sample text 2 sample text 2 | ||
sample text 3 sample text 3</textarea> |
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,23 @@ | ||
<!DOCTYPE html> | ||
<title>Test: max-content sizes of INPUT and TEXTAREA</title> | ||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic-sizes"> | ||
<link rel="match" href="max-content-input-001-ref.html"> | ||
<style> | ||
input, textarea { font: 20px monospace; white-space: pre; } | ||
</style> | ||
|
||
<p><input style="height: max-content" value="sample text"> | ||
|
||
<p><textarea style="height: max-content" rows=3 cols=12>sample text 1 sample text 1 | ||
sample text 2 sample text 2 | ||
sample text 3 sample text 3 | ||
sample text 4 sample text 4 | ||
sample text 5 sample text 5 | ||
sample text 6 sample text 6 | ||
sample text 7 sample text 7</textarea> | ||
|
||
<p><input value="sample text" style="width: max-content"> | ||
|
||
<p><textarea class="h" rows=3 cols=12 style="width: max-content">sample text 1 sample text 1 | ||
sample text 2 sample text 2 | ||
sample text 3 sample text 3</textarea> |