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

Side by Side Diff: LayoutTests/accessibility/title-ui-element-correctness.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 <body> 3 <body>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 5
6 <div id="container"> 6 <div id="container">
7 7
8 <div> 8 <div>
9 <label id="label1" for="control1">Label 1</label> 9 <label id="label1" for="control1">Label 1</label>
10 <input id="control1" type="text"> 10 <input id="control1" type="text">
11 </div> 11 </div>
12 12
13 <div> 13 <div>
14 <label id="label2"> 14 <label id="label2">
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 shouldBe("newLabel6Element = createLabelWithIdAndForAttribute('label6a', 'co ntrol6'); document.body.insertBefore(newLabel6Element, document.body.firstChild) ; axElement('control6').titleUIElement().isEqual(axElement('label6a'))", "true") ; 103 shouldBe("newLabel6Element = createLabelWithIdAndForAttribute('label6a', 'co ntrol6'); document.body.insertBefore(newLabel6Element, document.body.firstChild) ; axElement('control6').titleUIElement().isEqual(axElement('label6a'))", "true") ;
104 shouldBe("document.body.removeChild(newLabel6Element); axElement('control6') .titleUIElement().isEqual(axElement('label6b'))", "true"); 104 shouldBe("document.body.removeChild(newLabel6Element); axElement('control6') .titleUIElement().isEqual(axElement('label6b'))", "true");
105 105
106 document.getElementById('container').style.display = 'none'; 106 document.getElementById('container').style.display = 'none';
107 } 107 }
108 108
109 </script> 109 </script>
110 110
111 </body> 111 </body>
112 </html> 112 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698