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> | |
<style type="text/css"> | |
#textbox-1{ | |
padding: 4px 10px; | |
} | |
.token { | |
background: #ccc; |
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"> | |
</head> | |
<body> | |
<ul> | |
<li><button type="button" aria-label="Channel 1, 10 unread messages">Channel 1</button></li> | |
<li><button type="button" title="Channel 2, 20 unread messages">Channel 2</button></li> | |
</ul> |
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
function FindProxyForURL(url, host) | |
{ | |
if (isInNet(host, 'pbs.twimg.com')) | |
return 'DIRECT'; else return 'PROXY 10.0.0.19:8888'; | |
} |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>SR Abbr Element Test</title> | |
</head> | |
<body> | |
Ben Bernanke, the Chairman of the <b><abbr title="Internal Revenue Service">IRS</abbr></b>, would likely be the least popular man in America if more people knew his name. | |
</body> | |
</html> |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="author" content="Todd Kloots"> | |
<style type="text/css"> |