| Index: Source/devtools/front_end/common/DOMExtension.js
|
| diff --git a/Source/devtools/front_end/common/DOMExtension.js b/Source/devtools/front_end/common/DOMExtension.js
|
| index 2da1f5e57af81600c0f07d9af53bbd4c17c0c6b0..e054e3bb035fc5262b4e6630f286bf849306e933 100644
|
| --- a/Source/devtools/front_end/common/DOMExtension.js
|
| +++ b/Source/devtools/front_end/common/DOMExtension.js
|
| @@ -426,6 +426,15 @@ Element.prototype.createTextChildren = function(var_args)
|
| DocumentFragment.prototype.createTextChildren = Element.prototype.createTextChildren;
|
|
|
| /**
|
| + * @param {...!Element} var_args
|
| + */
|
| +Element.prototype.appendChildren = function(var_args)
|
| +{
|
| + for (var i = 0, n = arguments.length; i < n; ++i)
|
| + this.appendChild(arguments[i]);
|
| +}
|
| +
|
| +/**
|
| * @return {number}
|
| */
|
| Element.prototype.totalOffsetLeft = function()
|
|
|