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

Side by Side Diff: LayoutTests/fast/css/shorthand-priority.html

Issue 48903019: Delete js-test-post.js. (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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 9
10 description("Tests that querying the priority for a shorthand works."); 10 description("Tests that querying the priority for a shorthand works.");
(...skipping 15 matching lines...) Expand all
26 shouldBe("e.style.getPropertyValue('border')", "'20px solid green'"); 26 shouldBe("e.style.getPropertyValue('border')", "'20px solid green'");
27 shouldBe("e.style.getPropertyPriority('border')", "''"); 27 shouldBe("e.style.getPropertyPriority('border')", "''");
28 28
29 e.style.border = ""; 29 e.style.border = "";
30 e.style.setProperty("border", "20px solid green", "!important"); 30 e.style.setProperty("border", "20px solid green", "!important");
31 shouldBe("e.style.getPropertyValue('border')", "'20px solid green'"); 31 shouldBe("e.style.getPropertyValue('border')", "'20px solid green'");
32 shouldBe("e.style.getPropertyPriority('border')", "'important'"); 32 shouldBe("e.style.getPropertyPriority('border')", "'important'");
33 33
34 document.body.removeChild(testContainer); 34 document.body.removeChild(testContainer);
35 </script> 35 </script>
36 <script src="../js/resources/js-test-post.js"></script>
37 </body> 36 </body>
38 </html> 37 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/shorthand-mismatched-list-crash.html ('k') | LayoutTests/fast/css/shorthands-four-values.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698