| Index: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/test/fixtures.js
|
| diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/test/fixtures.js b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/test/fixtures.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..312144962071d384a0e864c31a476abcfdce50a2
|
| --- /dev/null
|
| +++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/test/fixtures.js
|
| @@ -0,0 +1,43 @@
|
| +/* jshint indent: false */
|
| +exports.fruits = [
|
| + '<ul id="fruits">',
|
| + '<li class="apple">Apple</li>',
|
| + '<li class="orange">Orange</li>',
|
| + '<li class="pear">Pear</li>',
|
| + '</ul>'
|
| +].join('');
|
| +
|
| +exports.vegetables = [
|
| + '<ul id="vegetables">',
|
| + '<li class="carrot">Carrot</li>',
|
| + '<li class="sweetcorn">Sweetcorn</li>',
|
| + '</ul>'
|
| +].join('');
|
| +
|
| +exports.chocolates = [
|
| + '<ul id="chocolates">',
|
| + '<li class="linth" data-highlight="Lindor" data-origin="swiss">Linth</li>',
|
| + '<li class="frey" data-taste="sweet" data-best-collection="Mahony">Frey</li>',
|
| + '<li class="cailler">Cailler</li>',
|
| + '</ul>'
|
| +].join('');
|
| +
|
| +exports.food = [
|
| + '<ul id="food">',
|
| + exports.fruits,
|
| + exports.vegetables,
|
| + '</ul>'
|
| +].join('');
|
| +
|
| +exports.inputs = [
|
| + '<select id="one"><option value="option_not_selected">Option not selected</option><option value="option_selected" selected>Option selected</option></select>',
|
| + '<input type="text" value="input_text" />',
|
| + '<input type="checkbox" name="checkbox_off" value="off" /><input type="checkbox" name="checkbox_on" value="on" checked />',
|
| + '<input type="radio" value="off" name="radio" /><input type="radio" name="radio" value="on" checked />',
|
| + '<select id="multi" multiple><option value="1">1</option><option value="2" selected>2</option><option value="3" selected>3</option><option value="4">4</option></select>'
|
| +].join('');
|
| +
|
| +exports.text = [
|
| + '<p>Apples, <b>oranges</b> and pears.</p>',
|
| + '<p>Carrots and <!-- sweetcorn --></p>'
|
| +].join('');
|
|
|