Lines Matching refs:fill
76 fill: {
108 "test mycircle.get(fill)" : function()
110 var fill = this.mycircle.get("fill");
111 Y.assert(fill.color === this.initialFillColor);
134 "test mycircle.set(fill)" : function()
137 mycircle.set("fill", {
141 Y.assert(this.updatedFillColor === mycircle.get("fill").color);
162 fill: {
190 "test myrect.get(fill)" : function()
192 var fill = this.myrect.get("fill");
193 Y.assert(fill.color === this.initialFillColor);
223 "test myrect.set(fill)" : function()
226 myrect.set("fill", {
230 Y.assert(this.updatedFillColor === myrect.get("fill").color);
251 fill: {
279 "test myellipse.get(fill)" : function()
281 var fill = this.myellipse.get("fill");
282 Y.assert(fill.color === this.initialFillColor);
305 "test myellipse.set(fill)" : function()
308 myellipse.set("fill", {
312 Y.assert(this.updatedFillColor === myellipse.get("fill").color);
332 fill: {
361 "test mypath.get(fill)" : function()
363 var fill = this.mypath.get("fill");
364 Y.assert(fill.color === this.initialFillColor);
387 "test mypath.set(fill)" : function()
390 mypath.set("fill", {
394 Y.assert(this.updatedFillColor === mypath.get("fill").color);
415 fill: {
474 fill: {
495 Y.assert(node.getAttribute("fill") == this.initialFillColor);
501 Y.assert(node.getAttribute("fill-opacity") == "1");
555 fill = this.myrect.get("fill"),
556 opacity = parseFloat(fill.opacity);
558 Y.assert(fill.color == node.getAttribute("fill"));
559 Y.assert(opacity == node.getAttribute("fill-opacity"));
630 fill: {
662 if(childNodes[i] && childNodes[i].nodeName == "fill" && childNodes[i].color == this.initialFillColor)
806 fill = this.myrect.get("fill"),
808 Y.assert(toHex(fill.color) == toHex(node.fillcolor));
891 fill: {
940 fill = this.myrect.get("fill"),
941 opacity = parseFloat(fill.opacity),
942 fillColor = fill.color,
1091 fill: {