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

Side by Side Diff: LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true.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 id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <div id="result"></div> 9 <div id="result"></div>
10 <div id="div" contentEditable="true"> 10 <div id="div" contentEditable="true">
11 <p id="p"></p> 11 <p id="p"></p>
12 </div> 12 </div>
13 <script> 13 <script>
14 description('When contentEditable is missing, it maps to "inherit" state and the element is editable if its parent is.') 14 description('When contentEditable is missing, it maps to "inherit" state and the element is editable if its parent is.')
15 15
16 shouldBe('document.getElementById("p").hasAttribute("contentEditable")','false') ; 16 shouldBe('document.getElementById("p").hasAttribute("contentEditable")','false') ;
17 shouldBe('document.getElementById("p").contentEditable', '"inherit"'); 17 shouldBe('document.getElementById("p").contentEditable', '"inherit"');
18 shouldBe('document.getElementById("p").isContentEditable', 'true'); 18 shouldBe('document.getElementById("p").isContentEditable', 'true');
19 shouldBe('window.getComputedStyle(p, "").getPropertyValue("-webkit-user-modify") ', '"read-write"'); 19 shouldBe('window.getComputedStyle(p, "").getPropertyValue("-webkit-user-modify") ', '"read-write"');
20 20
21 document.getElementById("div").style.display= 'none'; 21 document.getElementById("div").style.display= 'none';
22 </script> 22 </script>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698