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; |
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
/* | |
Parses shortcodes inside shortcodes by passing the content into do_shortcode. | |
[testouter][testinner][/testinner][/testouter] | |
*/ | |
function shortcode_test_outer( $atts, $content = null ) { | |
?><p>shortcode-outer-start</p><?php | |
do_shortcode( $content ); | |
?><p>shortcode-outer-end</p><?php |
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
/** | |
* 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> | |
<title>this and strict mode</title> | |
</head> | |
<body> | |
<script> | |
'use strict'; | |
alert('this === window: ' + (this === window)); | |
</script> |
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
// clang -Wall -o posixsemtest posixsemtest.c | |
#include <stdio.h> | |
#include <semaphore.h> | |
int main(int argc, char** argv) { | |
if (argc < 2) { | |
printf("USAGE: %s <semaphore_name>\n", argv[0]); | |
return 1; |
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> | |
<title>Edge Wheel Delta X Inverted Test</title> | |
<style> | |
body { | |
background: #CCCCCC; | |
} | |
.panel { | |
overflow: scroll; |
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 http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' stackoverflow.com;"> | |
<title>Are you logged in to Stack Overflow?</title> | |
</head> | |
<body> | |
<h1>Are you logged in to Stack Overflow?<h1> | |
<h2 id="answer">...<h2> |
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>Download large Blob Firefox issue on macOS</title> | |
</head> | |
<body> | |
<h1>Download large Blob Firefox issue on macOS</h1> | |
<h2>About</h2> | |
<p>Attempting to download a blob URL on macOS over a certain size will hang at "A few seconds left" without ever finishing the download.</p> |
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>Firefox IndexedDB Limit Test</title> | |
</head> | |
<body> | |
<script> | |
(function() { | |
'use strict'; |
OlderNewer