diff options
author | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-09-23 08:44:31 +0200 |
---|---|---|
committer | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-09-23 08:44:31 +0200 |
commit | 7fc6575a7a38daa21a26e2b179a92ca809b61eea (patch) | |
tree | 679498b3fd59aa375c6c6ce7ba48ed3d6a6e11d7 /source/bower_components/modernizr/test/js/basic.html | |
parent | 35239fc1f4641db1e602383b43cc29b151cde9b9 (diff) | |
parent | 1c177d628ffdb693483b1c39b94b5f19adcd8095 (diff) |
Merge branch 'replace-bootstrap-with-foundation'
Diffstat (limited to 'source/bower_components/modernizr/test/js/basic.html')
-rw-r--r-- | source/bower_components/modernizr/test/js/basic.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/source/bower_components/modernizr/test/js/basic.html b/source/bower_components/modernizr/test/js/basic.html new file mode 100644 index 0000000..9f378a9 --- /dev/null +++ b/source/bower_components/modernizr/test/js/basic.html @@ -0,0 +1,65 @@ +<!DOCTYPE html> +<html class="+no-js no-js- no-js i-has-no-js"> +<head> + <meta charset="UTF-8"> + <title>Modernizr Test Suite</title> + <link rel="stylesheet" href="qunit/qunit.css"> + <style> + body { margin-bottom: 150px;} + #testbed { font-family: Helvetica; color: #444; padding-bottom: 100px;} + #testbed button { margin: 30px; font-size: 13px;} + .data-notes, .offScreen { display:none;} + table { width: 100%;} + tbody tr:nth-child(even) td, tbody tr:nth-child(even) th { border: 1px solid #ccc; border-left: 0; border-right: 0;} + table td:nth-child(even), table th:nth-child(even) { background: #e6e6e6;} + table tbody tr:hover td, table tbody tr:hover th { background: #e1e100!important;} + td.wrong { background:red!important;} + #html5section { visibility: hidden; } + h1 label { display:none;} + .output { padding: 0 0 0 16px;} + .output ul { margin: 0;} + .output li { color: #854747; } + .output li.yes{color:#090;} + .output li b{color:#000;} + .output {font:14px/1.3 Inconsolata,Consolas,monospace; + -webkit-column-count: 5; + -moz-column-count: 5; + column-count: 5;} + .output + .output { border-top: 5px solid #ccc; } + textarea { width: 100%; min-height: 75px;} + #caniusetrigger { font-size: 38px; font-family: monospace; display:block; } + </style> + + <script src="https://raw.github.com/Modernizr/Modernizr/master/modernizr.js"></script> + + <script>window.Modernizr || document.write('<script src="../modernizr.js"><\/script>'); console.log("Loading in the /js folder *trollface*")</script> + + <script src="js/lib/polyfills.js"></script> + <script src="js/lib/detect-global.js"></script> + + <script src="qunit/qunit.js"></script> + <script src="js/lib/jquery-1.7b2.js"></script> + + <script src="js/setup.js"></script> + + <script src="js/unit.js"></script> +</head> +<body> + <h1 id="qunit-header">Modernizr Test Suite</h1> + <h2 id="qunit-banner"></h2> + <div id="qunit-testrunner-toolbar"></div> + <h2 id="qunit-userAgent"></h2> + + <ol id="qunit-tests"></ol> + + <div id="mod-output" class=output></div> + <div id="mod-feattest-output" class=output></div> + + + <br> + + <section><aside>this is an aside within a section</aside></section> + + +</body> +</html> |