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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html

Issue 1825733002: Revert of Exposed the children of elements with role textbox in order to make rich text information available… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html b/third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html
index 84ef22ccd2e3fb34cc21a9923676a8280b5b4860..089c3018f4fe4833ba4eb0eea61e66f01fa4f8d2 100644
--- a/third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html
+++ b/third_party/WebKit/LayoutTests/accessibility/is-richly-editable.html
@@ -17,7 +17,6 @@
style="border: 1px solid #000000;">
<div id="richly_editable6" contentEditable="true">Some text.</div>
</canvas>
-<div id="richly_editable7" contentEditable role="textbox">Some text.</div>
<!-- Non-richly editable elements. -->
<input id="non_richly_editable1" type="text" value="Some text.">
@@ -28,15 +27,16 @@
<div contentEditable="plaintext-only">
<p id="non_richly_editable5">Some text.</p>
</div>
-<p id="non_richly_editable6" tabindex="0">Some text.</p>
-<button id="non_richly_editable7">Button</button>
+<div id="non_richly_editable6" contentEditable role="textbox">Some text.</div>
+<p id="non_richly_editable7" tabindex="0">Some text.</p>
+<button id="non_richly_editable8">Button</button>
<script>
description("This tests that only elements that allow the user to edit rich text in them are recognized as being richly editable.");
if (window.accessibilityController) {
- for (var i = 1; i <= 7; ++i) {
+ for (var i = 1; i <= 6; ++i) {
var elementId = "richly_editable" + i;
var element = document.getElementById(elementId);
element.focus();

Powered by Google App Engine
This is Rietveld 408576698