mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
Update web-platform-tests to revision ae1e2d51f38e208f3d07a97b5d82f9ca0dda2c94
This commit is contained in:
parent
6c506ba260
commit
96553cb7e2
109 changed files with 3903 additions and 298 deletions
|
@ -0,0 +1,10 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test Reference</title>
|
||||
<style>
|
||||
input {
|
||||
all: initial;
|
||||
width: 100px;
|
||||
}
|
||||
</style>
|
||||
<p>You should not see an ellipsis for the text below.</p>
|
||||
<input id="input_element" value="xxxxxxxxxxxxxxxxxxxx">
|
|
@ -0,0 +1,20 @@
|
|||
<!doctype html>
|
||||
<title>CSS Overflow Test: text-overflow:ellipsis not rendered while editing</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow/#ellipsis-interaction">
|
||||
<link rel="match" href="text-overflow-ellipsis-editing-input-ref.html">
|
||||
<!-- The specification says it "may" render ellipsis as clip while editing, but
|
||||
all current engines do for input elements. -->
|
||||
<style>
|
||||
input {
|
||||
all: initial;
|
||||
width: 100px;
|
||||
text-overflow: ellipsis;
|
||||
caret-color: transparent;
|
||||
}
|
||||
</style>
|
||||
<p>You should not see an ellipsis for the text below.</p>
|
||||
<input id="input_element" value="xxxxxxxxxxxxxxxxxxxx">
|
||||
<script>
|
||||
input_element.offsetTop;
|
||||
input_element.focus();
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue