| Index: LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
|
| diff --git a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
|
| deleted file mode 100644
|
| index 0936f81713422e94e2d449b2c4a7eff0cab03256..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -</head>
|
| -<body>
|
| -<p id="description"></p>
|
| -<div id="console"></div>
|
| -<div id="result"></div>
|
| -<script>
|
| -description('document.designMode inherits from parent documents.')
|
| -
|
| -function runTest()
|
| -{
|
| - evalAndLog('document.designMode = "on"');
|
| -
|
| - subDocument = document.getElementById("subframe").contentDocument;
|
| - shouldBe('subDocument.getElementById("div").contentEditable', '"inherit"');
|
| - shouldBe('subDocument.getElementById("div").isContentEditable', 'true');
|
| -
|
| - document.getElementById("subframe").style.display= 'none';
|
| -}
|
| -</script>
|
| -<iframe id="subframe" onload="runTest()" src="data:text/html,<div id='div'></div>"></iframe>
|
| -</body>
|
| -</html>
|
|
|