This file contains 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
/** | |
* Polyfill for invertIconForLightTheme option missing in Firefox < 43 Add-on SDK. | |
* | |
* @copyright Alexander O'Mara | |
* @license MPL-2.0 | |
* | |
* Conditionally load this polyfill with the following version detection: | |
* | |
* const system = require('sdk/system'); | |
* if (parseInt(system.platformVersion) < 43) { |
This file contains 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> | |
<meta charset="utf-8" /> | |
<title>WebKit Wheel Event Remove Window Crash</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
/*<!--*/ | |
(function(window) {'use strict'; |
This file contains 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> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" /> | |
<title>iOS 8 position: fixed; input element workaround</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; |