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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/parser/foreign-object-case-sensitivity.html

Issue 2118903003: Relocate tests from fast/svg/ to svg/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-fast-svg-tests
Patch Set: Rename some files Created 4 years, 5 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <style> 3 <style>
4 svg { 4 svg {
5 display: block; 5 display: block;
6 width: 100%; 6 width: 100%;
7 height: 100px 7 height: 100px
8 } 8 }
9 9
10 foreignObject { 10 foreignObject {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 shouldBeEqualToString("getComputedStyle("+id+").color", color); 68 shouldBeEqualToString("getComputedStyle("+id+").color", color);
69 shouldBeEqualToString("getComputedStyle("+id+").fontWeight", fontWeight); 69 shouldBeEqualToString("getComputedStyle("+id+").fontWeight", fontWeight);
70 } 70 }
71 71
72 testComputedStyle("fo1", "rgb(0, 128, 0)", "bold"); 72 testComputedStyle("fo1", "rgb(0, 128, 0)", "bold");
73 testComputedStyle("fo2", "rgb(0, 128, 0)", "bold"); 73 testComputedStyle("fo2", "rgb(0, 128, 0)", "bold");
74 testComputedStyle("fo3", "rgb(0, 128, 0)", "bold"); 74 testComputedStyle("fo3", "rgb(0, 128, 0)", "bold");
75 testComputedStyle("fo4", "rgb(0, 128, 0)", "bold"); 75 testComputedStyle("fo4", "rgb(0, 128, 0)", "bold");
76 76
77 </script> 77 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698