WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED WONTFIX
147302
Web Inspector: Start using Node.prototype.before
https://bugs.webkit.org/show_bug.cgi?id=147302
Summary
Web Inspector: Start using Node.prototype.before
Nikita Vasilyev
Reported
2015-07-25 21:34:31 PDT
https://bugs.webkit.org/show_bug.cgi?id=74648
introduced Node.prototype.append, among a few other DOM methods. Convert the following code: refElem.parendNode.insertBefore(newElem, refElem) to refElem.before(newElem) However, we can't safely convert all occurrences of "insertBefore" to "before". baseElem.insertBefore(newElem, refElem) refElem could be a null here. refElem.before(newElem) would cause an error.
Attachments
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2015-07-25 21:34:51 PDT
<
rdar://problem/22000400
>
Nikita Vasilyev
Comment 2
2015-07-25 21:43:13 PDT
I have found only one instance that satisfier the following requirement: elemA.parentElement.insertBefore(highlightNode, elemA); \ / \------------------ same elements ------------/
https://github.com/WebKit/webkit/blob/981bae9952b1f312b89d362fd39768c075408669/Source/WebInspectorUI/UserInterface/Base/Main.js#L1990
Probably doesn't worth a patch.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug