Commit 16c9e3c5 authored by Preeti Mukherjee's avatar Preeti Mukherjee
Browse files

Bug 696385 - change dom.a to dom.span in...

Bug 696385 - change dom.a to dom.span in mozilla-central/devtools/client/webconsole/components/message-types/NetworkEventMessage.js#109; r=nchevobbe

MozReview-Commit-ID: 2PBUG8yQIXY

Differential Revision: https://phabricator.services.mozilla.com/D4136

--HG--
extra : moz-landing-system : lando
parent dd1853e1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -285,15 +285,18 @@ a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.message.network .status {
  flex: none;
  margin-inline-start: 6px;
  cursor: default;
}

.message.network.mixed-content .url {
  color: var(--theme-highlight-red);
  cursor: default;
}

.message .learn-more-link {
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ function NetworkEventMessage({
  const xhr = isXHR
    ? dom.span({ className: "xhr" }, l10n.getStr("webConsoleXhrIndicator"))
    : null;
  const requestUrl = dom.a({ className: "url", title: request.url, onClick: toggle },
  const requestUrl = dom.span({ className: "url", title: request.url, onClick: toggle },
    request.url);
  const statusBody = statusInfo
    ? dom.a({ className: "status", onClick: toggle }, statusInfo)