Lines Matching refs:attrs
123 function createNaClModule(name, tool, path, width, height, attrs) { argument
133 if (attrs) {
134 for (var key in attrs) {
135 moduleEl.setAttribute(key, attrs[key]);
348 function domContentLoaded(name, tool, path, width, height, attrs) { argument
364 createNaClModule(name, tool, path, width, height, attrs);
440 var attrs = {};
441 if (body.dataset.attrs) {
442 var attr_list = body.dataset.attrs.split(' ');
447 attrs[key] = value;
471 body.dataset.height, attrs);