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

Side by Side Diff: LayoutTests/fast/shapes/parsing/parsing-shape-inside.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 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script src="parsing-test-utils.js"></script> 7 <script src="parsing-test-utils.js"></script>
8 <script> 8 <script>
9 description('Testing parsing of the shape-inside property.'); 9 description('Testing parsing of the shape-inside property.');
10 10
(...skipping 18 matching lines...) Expand all
29 [// [property, parentValue, childValue, expectedValue] 29 [// [property, parentValue, childValue, expectedValue]
30 ["shape-inside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto , child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], 30 ["shape-inside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto , child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
31 ["shape-inside", "outside-shape", "rectangle(10px, 20px, 30px, 40px)", "par ent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"], 31 ["shape-inside", "outside-shape", "rectangle(10px, 20px, 30px, 40px)", "par ent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
32 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: r ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], 32 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: r ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"],
33 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangl e(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"], 33 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangl e(10px, 20px, 30px, 40px, 0px, 0px), child: outside-shape"],
34 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: r ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 4 0px, 0px, 0px)"], 34 ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: r ectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 4 0px, 0px, 0px)"],
35 ["shape-inside", "", "inherit", "parent: outside-shape, child: outside-shap e"], 35 ["shape-inside", "", "inherit", "parent: outside-shape, child: outside-shap e"],
36 ["shape-inside", "auto", "inherit", "parent: auto, child: auto"]] 36 ["shape-inside", "auto", "inherit", "parent: auto, child: auto"]]
37 ); 37 );
38 </script> 38 </script>
39 <script src="../../js/resources/js-test-post.js"></script>
40 </body> 39 </body>
41 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698