Replace simple invocations of createElementWithClass

This applies the following replacement to the codebase:

(\S+) = createElementWithClass\('(\w+)'\)

to

$1 = document.createElement('$2')

[email protected]

Bug: 1077215, 1011811
Change-Id: I719bc90097273a9f735ee7fc9828edb6405c27e8
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2173376
Auto-Submit: Tim van der Lippe <[email protected]>
Commit-Queue: Paul Lewis <[email protected]>
Reviewed-by: Paul Lewis <[email protected]>
diff --git a/front_end/browser_debugger/DOMBreakpointsSidebarPane.js b/front_end/browser_debugger/DOMBreakpointsSidebarPane.js
index ccbdbd0..1ed5f74 100644
--- a/front_end/browser_debugger/DOMBreakpointsSidebarPane.js
+++ b/front_end/browser_debugger/DOMBreakpointsSidebarPane.js
@@ -105,7 +105,7 @@
     const description = createElement('div');
     const breakpointTypeLabel = BreakpointTypeLabels.get(item.type);
     description.textContent = breakpointTypeLabel;
-    const linkifiedNode = createElementWithClass('monospace');
+    const linkifiedNode = document.createElement('monospace');
     linkifiedNode.style.display = 'block';
     labelElement.appendChild(linkifiedNode);
     Common.Linkifier.Linkifier.linkify(item.node, {preventKeyboardFocus: true}).then(linkified => {