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

Side by Side Diff: LayoutTests/fast/html/range-point-in-range-for-different-documents.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p> 7 <p>
8 This tests the behavior of Range::isPointInRange when the point and 8 This tests the behavior of Range::isPointInRange when the point and
9 the range are in different documents. 9 the range are in different documents.
10 </p> 10 </p>
11 11
12 <script> 12 <script>
13 var docType = document.implementation.createDocumentType ('html', '' , ''); 13 var docType = document.implementation.createDocumentType ('html', '' , '');
14 var doc = document.implementation.createDocument('', 'html', docType ); 14 var doc = document.implementation.createDocument('', 'html', docType );
(...skipping 13 matching lines...) Expand all
28 shouldBeFalse("range.isPointInRange(testNode, 1)"); 28 shouldBeFalse("range.isPointInRange(testNode, 1)");
29 } 29 }
30 catch (error) { 30 catch (error) {
31 testFailed('isPointInRange throw an exception of type ' + error. code + '.'); 31 testFailed('isPointInRange throw an exception of type ' + error. code + '.');
32 } 32 }
33 33
34 document.body.removeChild(testNode); 34 document.body.removeChild(testNode);
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/html/progress-user-modify.html ('k') | LayoutTests/fast/html/script-tests/TEMPLATE.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698