This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <style> | |
| /* container which maintains the ratio */ | |
| /* padding-bottom is the magic rule to set the aspect ration */ | |
| .container { | |
| position: relative; | |
| height: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-ms-viewport { | |
| width: device-width; | |
| } | |
| @import "reset"; | |
| @import "smallest"; | |
| @media print { | |
| @import "print"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe("Calculator", function () { | |
| beforeEach(function () { | |
| Calculator.current = 0; | |
| }); | |
| describe("When adding numbers", function () { | |
| it("should store the current value at all times", function () { | |
| expect(Calculator.current).toBeDefined(); | |
| }); |
OlderNewer