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

Side by Side Diff: third_party/WebKit/LayoutTests/accessibility/contenteditable-caret-position.html

Issue 1841333002: Various fixes for aria-activedescendant. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed some Blink tests. Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 4
5 <div id="main" role="main"> 5 <div id="main" role="main">
6 6
7 <div id="contenteditable-textbox" role="textbox" contenteditable="true"> 7 <div id="contenteditable-textbox" role="textbox" contenteditable="true">
8 <div id="contenteditable-line1">Line 1</div> 8 <div id="contenteditable-line1">Line 1</div>
9 <textarea id="contenteditable-line2" rows="1" cols="40">Line 2</textarea > 9 <textarea id="contenteditable-line2" rows="1" cols="40">Line 2</textarea >
10 </div> 10 </div>
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 assert_equals(rootAccessible.selectionFocusOffset, 271 assert_equals(rootAccessible.selectionFocusOffset,
272 characterOffset); 272 characterOffset);
273 } 273 }
274 } 274 }
275 275
276 }, "Test moving the caret across two paragraphs."); 276 }, "Test moving the caret across two paragraphs.");
277 </script> 277 </script>
278 278
279 <script> 279 <script>
280 if (window.testRunner) 280 if (window.testRunner)
281 document.getElementById("main").style.display = "none";; 281 document.getElementById("main").style.display = "none";
282 </script> 282 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698