mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Basic insertion point reftest
This commit is contained in:
parent
32aad0838e
commit
e72ae2c25a
3 changed files with 48 additions and 0 deletions
|
@ -2579,6 +2579,18 @@
|
||||||
"url": "/_mozilla/css/input_height_a.html"
|
"url": "/_mozilla/css/input_height_a.html"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"css/input_insertion_point_empty_a.html": [
|
||||||
|
{
|
||||||
|
"path": "css/input_insertion_point_empty_a.html",
|
||||||
|
"references": [
|
||||||
|
[
|
||||||
|
"/_mozilla/css/input_insertion_point_empty_ref.html",
|
||||||
|
"!="
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"url": "/_mozilla/css/input_insertion_point_empty_a.html"
|
||||||
|
}
|
||||||
|
],
|
||||||
"css/input_placeholder.html": [
|
"css/input_placeholder.html": [
|
||||||
{
|
{
|
||||||
"path": "css/input_placeholder.html",
|
"path": "css/input_placeholder.html",
|
||||||
|
@ -9049,6 +9061,18 @@
|
||||||
"url": "/_mozilla/css/input_height_a.html"
|
"url": "/_mozilla/css/input_height_a.html"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"css/input_insertion_point_empty_a.html": [
|
||||||
|
{
|
||||||
|
"path": "css/input_insertion_point_empty_a.html",
|
||||||
|
"references": [
|
||||||
|
[
|
||||||
|
"/_mozilla/css/input_insertion_point_empty_ref.html",
|
||||||
|
"!="
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"url": "/_mozilla/css/input_insertion_point_empty_a.html"
|
||||||
|
}
|
||||||
|
],
|
||||||
"css/input_placeholder.html": [
|
"css/input_placeholder.html": [
|
||||||
{
|
{
|
||||||
"path": "css/input_placeholder.html",
|
"path": "css/input_placeholder.html",
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>empty input insertion point test</title>
|
||||||
|
<link rel="mismatch" href="input_insertion_point_empty_ref.html">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<input>
|
||||||
|
<script>
|
||||||
|
document.querySelector("input").focus();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>empty input insertion point reference</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<input>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Add table
Add a link
Reference in a new issue