Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Backed out changeset 7529213e3375 (bug 1377861) for failing reftest i…
Browse files Browse the repository at this point in the history
…frame-border-radius.html on Windows 8 x64. r=backout
  • Loading branch information
Archaeopteryx committed Jul 6, 2017
1 parent f91a959 commit 0ff7e19
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
</script>
<body onload="loadHandler();">
<iframe srcdoc="<input>"></iframe>
<iframe src="data:text/html,<input>"></iframe>
<input></input>
</body>
</html>
2 changes: 1 addition & 1 deletion dom/html/reftests/autofocus/autofocus-leaves-iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}
</script>
<body>
<iframe onload="frameLoadHandler();" srcdoc="<input autofocus>"></iframe>
<iframe onload="frameLoadHandler();" src="data:text/html,<input autofocus>"></iframe>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
document.documentElement.className = "";
}
</script>
<iframe id=frame onload="loadFrame()" srcdoc="<body><span lang='en'>text</span></body>" marginwidth="100px" marginheight="100px" width=300px height=300px></iframe>
<iframe id=frame onload="loadFrame()" src="data:text/html,<body><span lang='en'>text</span></body>" marginwidth="100px" marginheight="100px" width=300px height=300px></iframe>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
document.documentElement.className = "";
}
</script>
<iframe id=frame onload="loadFrame()" srcdoc="<body lang='en'>text</body>" marginwidth="100px" marginheight="100px" width=300px height=300px></iframe>
<iframe id=frame onload="loadFrame()" src="data:text/html,<body lang='en'>text</body>" marginwidth="100px" marginheight="100px" width=300px height=300px></iframe>
</body>
</html>
2 changes: 1 addition & 1 deletion editor/reftests/824080-2-ref.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<body>
<p id="text">normal text</p>
<iframe id="editor" onload="doTest();"
srcdoc="<body>editable text</body>"></iframe>
src="data:text/html,<body>editable text</body>"></iframe>
</body>
</html>

2 changes: 1 addition & 1 deletion editor/reftests/824080-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<body>
<p id="text">normal text</p>
<iframe id="editor" onload="doTest();"
srcdoc="<script>document.designMode='on';</script><body>editable text</body>"></iframe>
src="data:text/html,<script>document.designMode='on';</script><body>editable text</body>"></iframe>
</body>
</html>

2 changes: 1 addition & 1 deletion editor/reftests/824080-4-ref.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<p id="text">normal text</p>
<div>content editable</div>
<iframe id="editor" onload="doTest();"
srcdoc="<body>editable text</body>"></iframe>
src="data:text/html,<body>editable text</body>"></iframe>
</body>
</html>

2 changes: 1 addition & 1 deletion editor/reftests/824080-4.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<p>normal text</p>
<div id="editor1" contenteditable>content editable</div>
<iframe id="editor2" onload="doTest();"
srcdoc="<script>document.designMode='on';</script><body>editable text</body>"></iframe>
src="data:text/html,<script>document.designMode='on';</script><body>editable text</body>"></iframe>
</body>
</html>

2 changes: 1 addition & 1 deletion editor/reftests/caret_on_presshell_reinit-2.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<iframe srcdoc="<body><div></div></body>"></iframe>
<iframe src="data:text/html,<body><div></div></body>"></iframe>
<script type="text/javascript">
onload = function() {
var i = document.querySelector("iframe");
Expand Down
2 changes: 1 addition & 1 deletion editor/reftests/caret_on_presshell_reinit-ref.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<body>
<div style="position: absolute">
<iframe srcdoc="<body contenteditable>foo</body>"></iframe>
<iframe src="data:text/html,<body contenteditable>foo</body>"></iframe>
</div>
<script type="text/javascript">
onload = function() {
Expand Down
2 changes: 1 addition & 1 deletion editor/reftests/caret_on_presshell_reinit.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<body>
<div>
<iframe srcdoc="<body contenteditable>foo</body>"></iframe>
<iframe src="data:text/html,<body contenteditable>foo</body>"></iframe>
</div>
<script type="text/javascript">
onload = function() {
Expand Down
2 changes: 1 addition & 1 deletion layout/reftests/bugs/474472-1-ref.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<html>
<body>
<iframe id="foo" srcdoc="<body bgcolor='lime'>PASS</body>"></iframe>
<iframe id="foo" src="data:text/html,<body bgcolor='lime'>PASS</body>"></iframe>
</body>
</html>
2 changes: 1 addition & 1 deletion layout/reftests/bugs/474472-1.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<iframe id="foo" srcdoc="<body bgcolor='red'>FAIL</body>"></iframe>
<iframe id="foo" src="data:text/html,<body bgcolor='red'>FAIL</body>"></iframe>
<script type="text/javascript">
// Globals
var foo = document.getElementById('foo');
Expand Down
2 changes: 1 addition & 1 deletion layout/reftests/scrolling/iframe-border-radius-ref.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<iframe srcdoc="<body style='font-size:100px; overflow:hidden; background:white;'><p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty"
<iframe src="data:text/html,<body style='font-size:100px; overflow:hidden; background:white;'><p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty"
id="f" style="width:500px; height:500px; border-radius:100px; border:none;"></iframe>
<script>
var f = document.getElementById("f");
Expand Down
2 changes: 1 addition & 1 deletion layout/reftests/scrolling/iframe-border-radius.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<iframe srcdoc="<body style='font-size:100px; overflow:hidden; background:white;'><p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty"
<iframe src="data:text/html,<body style='font-size:100px; overflow:hidden; background:white;'><p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty<p>Hello<p>Kitty"
id="f" style="width:500px; height:500px; border-radius:100px; border:none;"></iframe>
<script>
var f = document.getElementById("f");
Expand Down

0 comments on commit 0ff7e19

Please sign in to comment.