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

Side by Side Diff: LayoutTests/editing/shadow/contenteditable-propagation-at-shadow-boundary.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="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 7
8 <p>This test checks that content-editable is not propagated from shadow host to a shadow subtree.</p> 8 <p>This test checks that content-editable is not propagated from shadow host to a shadow subtree.</p>
9 9
10 <p>This p is required to produce the issue.</p> 10 <p>This p is required to produce the issue.</p>
11 <div contenteditable> 11 <div contenteditable>
12 <div>This div and parent div are required to produce the issue.</div> 12 <div>This div and parent div are required to produce the issue.</div>
13 <div id="host1" contenteditable>shadow host 1</div> 13 <div id="host1" contenteditable>shadow host 1</div>
14 </div> 14 </div>
(...skipping 24 matching lines...) Expand all
39 39
40 var nodeInShadowRoot1 = prepareNodeInShadowRoot(document.getElementById('host1') ); 40 var nodeInShadowRoot1 = prepareNodeInShadowRoot(document.getElementById('host1') );
41 var userModifyPropertyName = '-webkit-user-modify'; 41 var userModifyPropertyName = '-webkit-user-modify';
42 shouldBeEqualToString('computedStyle(nodeInShadowRoot1, userModifyPropertyName)' , 'read-only'); 42 shouldBeEqualToString('computedStyle(nodeInShadowRoot1, userModifyPropertyName)' , 'read-only');
43 43
44 var successfullyParsed = true; 44 var successfullyParsed = true;
45 </script> 45 </script>
46 46
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698