Move focus_selector.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 5953387cb0
commit f2d83cd59d
4 changed files with 25 additions and 1 deletions

View file

@ -63,7 +63,6 @@ prefs:"layout.flex.enabled" == flex_row_direction.html flex_row_direction_ref.ht
== floated_list_item_a.html floated_list_item_ref.html
== floated_negative_margins_a.html floated_negative_margins_ref.html
== floated_table_with_margin_a.html floated_table_with_margin_ref.html
== focus_selector.html focus_selector_ref.html
== font_color_attribute_a.html font_color_attribute_ref.html
== font_face_attribute.html font_face_attribute_ref.html
== font_size.html font_size_ref.html

View file

@ -1,18 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<style>
input:focus {
outline: 2px solid orange;
}
</style>
</head>
<body>
<input id="a">
<input id="b">
<script>
document.getElementById("a").focus();
</script>
</body>
</html>

View file

@ -1,15 +0,0 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<style>
#a {
outline: 2px solid orange;
}
</style>
</head>
<body>
<input id="a">
<input id="b">
</body>
</html>