mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
resources: Fix syntax of the <iframe frameborder>
selector in
`presentational-hints.css`. Improves google.com.
This commit is contained in:
parent
f83e1a34dc
commit
fca2037168
4 changed files with 36 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
|
|
6
tests/wpt/mozilla/tests/css/iframe/frameborder_a.html
Normal file
6
tests/wpt/mozilla/tests/css/iframe/frameborder_a.html
Normal 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>
|
||||
|
5
tests/wpt/mozilla/tests/css/iframe/frameborder_ref.html
Normal file
5
tests/wpt/mozilla/tests/css/iframe/frameborder_ref.html
Normal 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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue