tests.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. (function(){
  2. module("html5shiv tests");
  3. var blockElements = "article,aside,figcaption,figure,footer,header,hgroup,nav,section".split(',');
  4. var testEnv = [
  5. {
  6. doc: document,
  7. initialShivMethods: html5.shivMethods,
  8. html5: html5,
  9. name: 'default'
  10. }
  11. ];
  12. var shivTests = function(fn, env){
  13. if(!env){
  14. env = testEnv[0];
  15. }
  16. env.html5.shivMethods = true;
  17. fn();
  18. env.html5.shivMethods = env.initialShivMethods;
  19. };
  20. var envTest = function(name, fn, frames){
  21. if(!frames){
  22. frames = ['default'];
  23. }
  24. asyncTest(name, function(){
  25. $.each(testEnv, function(i, env){
  26. if($.inArray(env.name, frames) != -1){
  27. fn(env);
  28. }
  29. });
  30. if(testEnv.length > 1){
  31. start();
  32. } else {
  33. initIframes();
  34. }
  35. });
  36. };
  37. QUnit.reset = function() {
  38. $.each(testEnv, function(i, env){
  39. $('#qunit-fixture', env.doc).html(env.fixture);
  40. });
  41. };
  42. var initIframes = function(){
  43. if(testEnv.length > 1){return;}
  44. testEnv[0].fixture = $('#qunit-fixture').html();
  45. $('iframe.test-frame').each(function(){
  46. var win = this.contentWindow;
  47. if($('#qunit-fixture', win.document).length){
  48. testEnv.push({
  49. doc: win.document,
  50. html5: win.html5,
  51. initialShivMethods: (win.html5 || {}).shivMethods,
  52. fixture: $('#qunit-fixture', win.document).html(),
  53. name: this.src.split('?')[1]
  54. });
  55. }
  56. });
  57. if(testEnv.length > 1){
  58. start();
  59. } else {
  60. setTimeout(initIframes, 30);
  61. }
  62. };
  63. $(initIframes);
  64. envTest("display block tests", function(env){
  65. $.each(blockElements, function(i, elem){
  66. equals($(elem, env.doc).css('display'), 'block', elem +" has display: block");
  67. });
  68. }, ['default', 'disableMethodsBefore']);
  69. envTest("test html5.createElement/html5.createDocumentFragment", function(env){
  70. var doc5 = html5;
  71. if(env.html5){
  72. doc5 = env.html5;
  73. env.html5.shivMethods = false;
  74. }
  75. html5.shivMethods = false;
  76. var fragDiv = doc5.createElement('div', env.doc);
  77. var frag = doc5.createDocumentFragment(env.doc);
  78. var markText = "with these words highlighted";
  79. var div = $( doc5.createElement('div', env.doc) ).html('<section><article><mark>s</mark></article>?</section>').appendTo(env.doc.getElementById('qunit-fixture'));
  80. fragDiv.innerHTML = '<section>This native javascript sentence is in a green box <mark>'+markText+'</mark>?</section>';
  81. frag.appendChild(fragDiv);
  82. fragDiv.innerHTML += '<article>This native javascript sentence is also in a green box <mark>'+markText+'</mark>?</article>';
  83. env.doc.getElementById('qunit-fixture').appendChild(frag);
  84. equals($('section article > mark', div).length, 1, "found mark in section > article");
  85. equals($('section > mark', fragDiv).html(), markText, "innerHTML getter equals innerHTML setter");
  86. equals($('article', fragDiv).css('borderTopWidth'), '2px', "article has a 2px border");
  87. if(env.html5){
  88. env.html5.shivMethods = env.initialShivMethods;
  89. }
  90. html5.shivMethods = true;
  91. }, ['disableMethodsBefore', 'disableMethodsAfter']);
  92. if(!html5.supportsUnknownElements){
  93. envTest("config shivMethods test", function(env){
  94. var div = $('<div/>', env.doc).html('<section><article><mark></mark></article>?</section>').appendTo(env.doc.getElementById('qunit-fixture'));
  95. equals($('section article > mark', div).length, (env.html5.shivMethods) ? 1 : 0, "found/no found mark in section > article");
  96. }, ['default', 'disableMethodsBefore', 'disableMethodsAfter']);
  97. envTest("config shivCSS test", function(env){
  98. $.each(blockElements, function(i, elem){
  99. equals($(elem, env.doc).css('display'), 'inline', elem +" has display: inline if unshived");
  100. });
  101. env.html5.shivCSS = true;
  102. env.html5.shivDocument();
  103. $.each(blockElements, function(i, elem){
  104. equals($(elem, env.doc).css('display'), 'block', elem +" has display: block. after reshiving");
  105. });
  106. }, ['disableCSS']);
  107. }
  108. envTest("config add elements test", function(env){
  109. var value = $.trim($('abcxyz', env.doc).html());
  110. ok((html5.supportsUnknownElements || env.html5.elements.indexOf('abcxyz') !== -1) ? value : !value, "unknownelement has one/none div inside: "+ value);
  111. }, ['default', 'disableMethodsBefore', 'addUnknownBefore', 'addUnknownAfter']);
  112. envTest("parsing tests", function(env){
  113. $.each(blockElements, function(i, elem){
  114. equals($(elem +' div.inside', env.doc).length, 1, elem +" has a div inside");
  115. });
  116. }, ['default', 'disableMethodsBefore']);
  117. envTest("style test", function(env){
  118. var article = $('article', env.doc);
  119. equals(article.css('borderTopWidth'), '2px', "article has a 2px border");
  120. }, ['default', 'disableMethodsBefore']);
  121. if (!html5.supportsUnknownElements) {
  122. envTest("shiv different document", function(env){
  123. var markText = "with these words highlighted3";
  124. var markup = '<section><article>This jQuery 1.6.4 sentence is in a green box <mark>' + markText + '</mark></article>?</section>';
  125. var div = $('<div/>', env.doc).html(markup).appendTo(env.doc.getElementById('qunit-fixture'));
  126. equals($('section article > mark', div).length, 0, "document is not shived");
  127. html5.shivDocument(env.doc);
  128. div = $('<div/>', env.doc).html(markup).appendTo(env.doc.getElementById('qunit-fixture'));
  129. equals($('section article > mark', div).length, 1, "document is shived");
  130. equals($('article', div).css('borderTopWidth'), '2px', "article has a 2px border");
  131. }, ['noEmbed']);
  132. }
  133. envTest("createElement/innerHTML test", function(env){
  134. shivTests(
  135. function(){
  136. var div = env.doc.createElement('div');
  137. var text = "This native javascript sentence is in a green box <mark>with these words highlighted</mark>?";
  138. div.innerHTML = '<section id="section">'+ text +'</section>';
  139. env.doc.getElementById('qunit-fixture').appendChild(div);
  140. equals($('#section', env.doc).html(), text, "innerHTML getter equals innerHTML setter");
  141. equals($('#section mark', env.doc).length, 1, "section has a mark element inside");
  142. },
  143. env
  144. );
  145. }, ['default', 'disableMethodsBefore']);
  146. envTest("createElement/createDocumentFragment/innerHTML test", function(env){
  147. shivTests(
  148. function(){
  149. var div = env.doc.createElement('div');
  150. var frag = env.doc.createDocumentFragment();
  151. var markText = "with these words highlighted";
  152. div.innerHTML = '<section>This native javascript sentence is in a green box <mark>'+markText+'</mark>?</section>';
  153. frag.appendChild(div);
  154. div.innerHTML += '<article>This native javascript sentence is also in a green box <mark>'+markText+'</mark>?</article>';
  155. env.doc.getElementById('qunit-fixture').appendChild(frag);
  156. equals($('section > mark', div).html(), markText, "innerHTML getter equals innerHTML setter");
  157. equals($('article', div).css('borderTopWidth'), '2px', "article has a 2px border");
  158. },
  159. env
  160. );
  161. }, ['default', 'disableMethodsBefore']);
  162. envTest("createDocumentFragment/cloneNode/innerHTML test", function(env){
  163. shivTests(
  164. function(){
  165. var frag = env.doc.createDocumentFragment();
  166. var fragDiv = env.doc.createElement('div');
  167. var markText = "with these words highlighted2";
  168. var fragDivClone;
  169. frag.appendChild(fragDiv);
  170. fragDiv.innerHTML = '<div><article>This native javascript sentence is also in a green box <mark>'+markText+'</mark>?</article></div>';
  171. fragDivClone = fragDiv.cloneNode(true);
  172. env.doc.getElementById('qunit-fixture').appendChild(fragDivClone);
  173. equals($('mark', env.doc).html(), markText, "innerHTML getter equals innerHTML setter");
  174. },
  175. env
  176. );
  177. }, ['default', 'addUnknownAfter']);
  178. test("form test", function() {
  179. shivTests(
  180. function(){
  181. var form = document.createElement('form');
  182. var select = document.createElement('select');
  183. var input = document.createElement('input');
  184. var button = document.createElement('button');
  185. var option = document.createElement('option');
  186. var markText = "with these words highlighted2";
  187. form.setAttribute('action', 'some/path');
  188. form.setAttribute('name', 'formName');
  189. form.target = '_blank';
  190. select.name = 'selectName';
  191. option.value = '1.value';
  192. button.setAttribute('type', 'submit');
  193. input.type = 'submit';
  194. form.innerHTML = '<article>This native javascript sentence is also in a green box <mark>'+markText+'</mark>?</article>';
  195. form.appendChild(select);
  196. form.appendChild(button);
  197. form.appendChild(input);
  198. if(select.add){
  199. try {
  200. select.add(option);
  201. } catch(er){
  202. select.appendChild(option);
  203. }
  204. } else {
  205. select.appendChild(option);
  206. }
  207. document.getElementById('qunit-fixture').appendChild(form);
  208. equals($('select option', form).val(), '1.value', "select has one option with value");
  209. equals($('article > mark', form).html(), markText, "innerHTML getter equals innerHTML setter");
  210. equals($('article', form).css('borderTopWidth'), '2px', "article has a 2px border");
  211. }
  212. );
  213. });
  214. envTest("jQuery test", function(env){
  215. shivTests(
  216. function(){
  217. var markText = "with these words highlighted3";
  218. var div = $('<div/>', env.doc).html('<section><article>This jQuery 1.6.4 sentence is in a green box <mark>'+markText+'</mark></article>?</section>').appendTo(env.doc.getElementById('qunit-fixture'));
  219. equals($('article > mark', div).html(), markText, "innerHTML getter equals innerHTML setter");
  220. equals($('article', div).css('borderTopWidth'), '2px', "article has a 2px border");
  221. },
  222. env
  223. );
  224. });
  225. })();