Download
Develop
Pastebin
Account
Download
Magazine
Develop
Pastebin
Login
Forgot Account/Password
Create Account
Language
Help
Language
Help
×
Login
Login Name
Password
×
Forgot Account/Password
Category:
Software
People
PersonalForge
Magazine
Wiki
Search
OSDN
>
Find Software
>
Internet
>
WWW/HTTP
>
Browsers
>
SIE
>
SCM
> git >
sie
>
Commit
Fork
Description
Project Summary
Developer Dashboard
Web Page
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
History
Search Keywords
Project Reviews
Downloads
List of Releases
Stats
Source Code
Code Repository list
Git
sie
Ticket
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Documents
FrontPage
Title index
Recent changes
Communication
Forums
List of Forums
公開討議 (9)
Mailing Lists
list of ML
sie-announce
sie-developers
News
R/O
HTTP
SSH
HTTPS
Fork
Summary
SourceTree
Commits
Branches
Tags
Forks
sie: Commit
ブラウザでSVGを表示するSIEの開発 (SIE - to display SVG on legacy browsers)
Commit MetaInfo
Revision
a8952eac956588adb33a7f963854a996649a3255 (
tree
)
Time
2018-07-12 22:52:35
Author
dhrname <dhrname@user...>
Commiter
dhrname
Log Message
Modify the Spec
Change Summary
modified:
tool/Spec/spec/SvgDomSpec.js
(
diff
)
Incremental Difference
--- a/tool/Spec/spec/SvgDomSpec.js
+++ b/tool/Spec/spec/SvgDomSpec.js
@@ -2894,7 +2894,7 @@ describe("SMIL Animation Spec", function() {
2894
2894
$animate.$a.init(ele.parentNode.lastChild);
2895
2895
expect($animate.$a.numberOfList).toBe(2);
2896
2896
expect($animate.$a.isDefault).toBeTruthy();
2897
- expect($animate.$a.defaultValue).toBe("matrix(0 0 0 0 0 0)");
2897
+ expect($animate.$a.defaultValue).toBe("matrix(0, 0, 0, 0, 0, 0)");
2898
2898
expect($animate.$a.tocall(0)).toBe("scale(0.0)");
2899
2899
expect($animate.$a.tocall(1)).toBe("scale(1.0)");
2900
2900
$animate.defaultValue = $animate.$a.defaultValue;
@@ -2909,26 +2909,26 @@ describe("SMIL Animation Spec", function() {
2909
2909
$animate.numberOfList = -1;
2910
2910
$animate.init(parentNode.lastChild);
2911
2911
expect($animate.numberOfList).toBe(0);
2912
- expect($animate.tocall(0)).toBe("matrix(0 0 0 0 0 0) scale(0.0)");
2913
- expect($animate.tocall(1)).toBe("matrix(0 0 0 0 0 0) scale(1.0)");
2912
+ expect($animate.tocall(0)).toBe("matrix(0, 0, 0, 0, 0, 0) scale(0.0)");
2913
+ expect($animate.tocall(1)).toBe("matrix(0, 0, 0, 0, 0, 0) scale(1.0)");
2914
2914
2915
2915
parentNode.appendChild(ele.cloneNode(true));
2916
2916
$animate.up("$a").numberOfList = -1;
2917
2917
parentNode.__transformList = [];
2918
- parentNode.setAttribute("transform", "matrix(0 0 0 0 0 0)");
2918
+ parentNode.setAttribute("transform", "matrix(0, 0, 0, 0, 0, 0)");
2919
2919
$animate.$a.init(parentNode.lastChild);
2920
2920
expect($animate.$a.numberOfList).toBe(0);
2921
2921
expect($animate.$a.isDefault).toBeTruthy();
2922
- expect($animate.$a.defaultValue).toBe("matrix(0 0 0 0 0 0)");
2923
- expect($animate.$a.tocall(0)).toBe("matrix(0 0 0 0 0 0) scale(0.0)");
2924
- expect($animate.$a.tocall(1)).toBe("matrix(0 0 0 0 0 0) scale(1.0)");
2922
+ expect($animate.$a.defaultValue).toBe("matrix(0, 0, 0, 0, 0, 0)");
2923
+ expect($animate.$a.tocall(0)).toBe("matrix(0, 0, 0, 0, 0, 0) scale(0.0)");
2924
+ expect($animate.$a.tocall(1)).toBe("matrix(0, 0, 0, 0, 0, 0) scale(1.0)");
2925
2925
$animate.defaultValue = $animate.$a.defaultValue;
2926
- expect($animate.tocall(0.1)).toBe("matrix(0 0 0 0 0 0) scale(0.1)");
2926
+ expect($animate.tocall(0.1)).toBe("matrix(0, 0, 0, 0, 0, 0) scale(0.1)");
2927
2927
2928
2928
ele.removeAttributeNS(null, "additive");
2929
2929
ad("replace", "sum", "scale(0.0) translate(0)", "scale(0.0) scale(0.0)",
2930
2930
"scale(1.0) scale(0.0)", "scale(1.0) scale(1.0)");
2931
- ad("sum", "replace", "matrix(0 0 0 0 0 0) scale(0.0)", "scale(0.0)",
2931
+ ad("sum", "replace", "matrix(0, 0, 0, 0, 0, 0) scale(0.0)", "scale(0.0)",
2932
2932
"scale(0.0)", "scale(1.0)");
2933
2933
function ad(first, second, a, b, c, d) {
2934
2934
/*子要素を全部消す*/
@@ -2943,7 +2943,7 @@ describe("SMIL Animation Spec", function() {
2943
2943
parentNode.appendChild(ele.cloneNode(true));
2944
2944
parentNode.__transformList = [];
2945
2945
$animate.numberOfList = -1;
2946
- parentNode.setAttribute("transform", "matrix(0 0 0 0 0 0)");
2946
+ parentNode.setAttribute("transform", "matrix(0, 0, 0, 0, 0, 0)");
2947
2947
$animate.up("$first").init(parentNode.firstChild);
2948
2948
$animate.up("$second").init(parentNode.lastChild);
2949
2949
expect($animate.$first.numberOfList).toBe(0);
Show on old repository browser