diff options
| author | Vojta Jina | 2011-06-02 20:15:43 +0200 |
|---|---|---|
| committer | Igor Minar | 2011-06-02 12:51:12 -0700 |
| commit | 9a6967755116f14b6f27fc00b5976b58f0bc6fcd (patch) | |
| tree | 18aaeaff178f7cb3dd8dd92917c2195b384f542e /test | |
| parent | b6db58c6472002cd81821a106816398942d4d0a4 (diff) | |
| download | angular.js-9a6967755116f14b6f27fc00b5976b58f0bc6fcd.tar.bz2 | |
Fix CSS tests on Opera
Opera translates name colors to numbers (red -> #ff0000)
Other browsers like FF or Chrome translate number to rgb (#ff0000 -> rgb(255, 0, 0)
So avoiding colors in tests is probably the easiest solution...
Diffstat (limited to 'test')
| -rw-r--r-- | test/BinderSpec.js | 4 | ||||
| -rw-r--r-- | test/directivesSpec.js | 14 | ||||
| -rw-r--r-- | test/scenario/dslSpec.js | 12 |
3 files changed, 15 insertions, 15 deletions
diff --git a/test/BinderSpec.js b/test/BinderSpec.js index e78980d7..dfa388e3 100644 --- a/test/BinderSpec.js +++ b/test/BinderSpec.js @@ -425,10 +425,10 @@ describe('Binder', function(){ it('BindStyle', function(){ var scope = this.compile('<div ng:style="style"/>'); - scope.$eval('style={color:"red"}'); + scope.$eval('style={height: "10px"}'); scope.$eval(); - assertEquals("red", scope.$element.css('color')); + assertEquals("10px", scope.$element.css('height')); scope.$eval('style={}'); scope.$eval(); diff --git a/test/directivesSpec.js b/test/directivesSpec.js index 4b2e7055..e5b8b607 100644 --- a/test/directivesSpec.js +++ b/test/directivesSpec.js @@ -196,9 +196,9 @@ describe("directive", function(){ describe('ng:style', function(){ it('should set', function(){ - var scope = compile('<div ng:style="{color:\'red\'}"></div>'); + var scope = compile('<div ng:style="{height: \'40px\'}"></div>'); scope.$eval(); - expect(element.css('color')).toEqual('red'); + expect(element.css('height')).toEqual('40px'); }); it('should silently ignore undefined style', function() { @@ -208,15 +208,15 @@ describe("directive", function(){ }); it('should preserve and remove previous style', function(){ - var scope = compile('<div style="color:red;" ng:style="myStyle"></div>'); + var scope = compile('<div style="height: 10px;" ng:style="myStyle"></div>'); scope.$eval(); - expect(getStyle(element)).toEqual({color:'red'}); - scope.myStyle = {color:'blue', width:'10px'}; + expect(getStyle(element)).toEqual({height: '10px'}); + scope.myStyle = {height: '20px', width: '10px'}; scope.$eval(); - expect(getStyle(element)).toEqual({color:'blue', width:'10px'}); + expect(getStyle(element)).toEqual({height: '20px', width: '10px'}); scope.myStyle = {}; scope.$eval(); - expect(getStyle(element)).toEqual({color:'red'}); + expect(getStyle(element)).toEqual({height: '10px'}); }); }); diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js index f0534c2c..4e0042d0 100644 --- a/test/scenario/dslSpec.js +++ b/test/scenario/dslSpec.js @@ -273,15 +273,15 @@ describe("angular.scenario.dsl", function() { }); it('should get css', function() { - doc.append('<div id="test" style="border: 1px solid red"></div>'); - $root.dsl.element('#test').css('border'); - expect($root.futureResult).toMatch(/red/); + doc.append('<div id="test" style="height: 30px"></div>'); + $root.dsl.element('#test').css('height'); + expect($root.futureResult).toMatch(/30px/); }); it('should set css', function() { - doc.append('<div id="test" style="border: 1px solid red"></div>'); - $root.dsl.element('#test').css('border', '1px solid green'); - expect(doc.find('#test').css('border')).toMatch(/green/); + doc.append('<div id="test" style="height: 10px"></div>'); + $root.dsl.element('#test').css('height', '20px'); + expect(doc.find('#test').css('height')).toEqual('20px'); }); it('should add all jQuery key/value methods', function() { |
