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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/getScreenCTM.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 <title>getScreenCTM tests</title> 2 <title>getScreenCTM tests</title>
3 <script src=../../resources/testharness.js></script> 3 <script src=../../resources/testharness.js></script>
4 <script src=../../resources/testharnessreport.js></script> 4 <script src=../../resources/testharnessreport.js></script>
5 <div id="testcontainer"> 5 <div id="testcontainer">
6 <style> 6 <style>
7 svg { 7 svg {
8 visibility: hidden; 8 visibility: hidden;
9 position: absolute; 9 position: absolute;
10 top:0; 10 top:0;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 var ctm = ctmToString(document.getElementById("f").getScreenCTM()); 52 var ctm = ctmToString(document.getElementById("f").getScreenCTM());
53 assert_equals(ctm, "0.5 0 0 0.5 0 0", ""); 53 assert_equals(ctm, "0.5 0 0 0.5 0 0", "");
54 }, "nested svg"); 54 }, "nested svg");
55 55
56 test(function() { 56 test(function() {
57 var ctm = ctmToString(document.getElementById("g").getScreenCTM()); 57 var ctm = ctmToString(document.getElementById("g").getScreenCTM());
58 assert_equals(ctm, "0.5 0 0 0.5 0 0", ""); 58 assert_equals(ctm, "0.5 0 0 0.5 0 0", "");
59 }, "g child of nested svg"); 59 }, "g child of nested svg");
60 60
61 </script> 61 </script>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGStyleElement.html ('k') | third_party/WebKit/LayoutTests/svg/dom/getbbox.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698