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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/execCommand/indent-button-crash.html

Issue 2680943004: Make FrameSelection to hold non-canonicalized positions (Closed)
Patch Set: 2017-02-09T15:13:43 Created 3 years, 10 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
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5
6 var scriptElements = document.getElementsByTagName('script');
7 for (var i = 0; i < scriptElements.length; i++) {
8 scriptElements[i].parentNode.removeChild(scriptElements[i]);
9 }
10
11 document.addEventListener('DOMCharacterDataModified', function() {
12 document.execCommand('Indent');
13 });
14
15 document.addEventListener('selectstart', function() {
16 var element = event.srcElement;
17 element.insertAdjacentElement('beforebegin', document.createElement('foo'));
18 element.insertAdjacentHTML('beforebegin', '<bar1><bar2><bar3>abc');
19 });
20
21 onload = function() {
22 document.execCommand('SelectAll', false);
23 document.designMode = 'on';
24 window.getSelection().getRangeAt(0).deleteContents();
25 document.body.textContent = 'PASS if Blink doesn\'t crash.';
26 };
27 </script>
28 <style>
29 *:read-write {
30 -webkit-appearance: push-button;
31 }
32 </style>
33 <link>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698