Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html

Issue 1031543003: Remove inheritance of designMode attribute. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments, add usage counter, rebase tests, rebase to ToT Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698