resources: Fix syntax of the <iframe frameborder> selector in

`presentational-hints.css`.

Improves google.com.
This commit is contained in:
Patrick Walton 2016-10-25 18:44:20 -07:00
parent f83e1a34dc
commit fca2037168
4 changed files with 36 additions and 1 deletions

View file

@ -133,7 +133,7 @@ hr[color], hr[noshade] { border-style: solid; }
iframe[frameborder=0], iframe[frameborder=no i] { border: none; }
iframe[frameborder="0"], iframe[frameborder=no i] { border: none; }
applet[align=left i], embed[align=left i], iframe[align=left i], img[type=image i][align=left i], object[align=left i] {
float: left;

View file

@ -1916,6 +1916,18 @@
"url": "/_mozilla/css/iframe/bg_color.html"
}
],
"css/iframe/frameborder_a.html": [
{
"path": "css/iframe/frameborder_a.html",
"references": [
[
"/_mozilla/css/iframe/frameborder_ref.html",
"=="
]
],
"url": "/_mozilla/css/iframe/frameborder_a.html"
}
],
"css/iframe/hide_after_load.html": [
{
"path": "css/iframe/hide_after_load.html",
@ -15764,6 +15776,18 @@
"url": "/_mozilla/css/iframe/bg_color.html"
}
],
"css/iframe/frameborder_a.html": [
{
"path": "css/iframe/frameborder_a.html",
"references": [
[
"/_mozilla/css/iframe/frameborder_ref.html",
"=="
]
],
"url": "/_mozilla/css/iframe/frameborder_a.html"
}
],
"css/iframe/hide_after_load.html": [
{
"path": "css/iframe/hide_after_load.html",

View file

@ -0,0 +1,6 @@
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="frameborder_ref.html">
<iframe frameborder=0 src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"></iframe>
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"></iframe>

View file

@ -0,0 +1,5 @@
<!DOCTYPE html>
<meta charset="utf-8">
<iframe style="border: none" src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"></iframe>
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"></iframe>