Skip to content

Commit 3314e51

Browse files
kojiishichromium-wpt-export-bot
authored andcommitted
[iframe] Add backgrounds to some tests
This patch adds backgrounds to some tests so that they are easier to analyze. This patch has no behavior changes. Bug: 418397278 Change-Id: Icdf37c86139793db1a8b6b0b1c2a1e386cfe964f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7557191 Commit-Queue: Kent Tamura <tkent@chromium.org> Auto-Submit: Koji Ishii <kojii@chromium.org> Reviewed-by: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/main@{#1582069}
1 parent 74cd09d commit 3314e51

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

css/css-sizing/responsive-iframe/resources/iframe-contents-400x200root.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
:root {
66
width: 400px;
77
height: 200px;
8+
background-color: lightBlue;
9+
border: orange 10px solid;
10+
box-sizing: border-box;
11+
}
812
}
913
</style>
1014
<meta name="responsive-embedded-sizing">

css/css-sizing/responsive-iframe/resources/iframe-contents-dom-content-loaded.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
<head>
33
<style>
44
* { margin: 0 }
5+
#target {
6+
background-color: lightBlue;
7+
border: orange 10px solid;
8+
box-sizing: border-box;
9+
}
510
</style>
611
<meta name="responsive-embedded-sizing">
712
</head>

css/css-sizing/responsive-iframe/resources/iframe-contents-slow.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
<head>
33
<style>
44
* { margin: 0 }
5+
#target {
6+
background-color: lightBlue;
7+
border: orange 10px solid;
8+
box-sizing: border-box;
9+
}
510
</style>
611
<meta name="responsive-embedded-sizing">
712
<script>
@@ -16,4 +21,4 @@
1621
}
1722
</script>
1823
</head>
19-
<div style="width: 100px; height: 400px"></div>
24+
<div id="target" style="width: 100px; height: 400px"></div>

0 commit comments

Comments
 (0)