Summary: Avoid linkifying some schemes in console logs. Steps to Reproduce: 1. Inspect this page 2. js> console.log("javascript://alert(1)") => This becomes a link. This is not useful inside Web Inspector Notes: - Even if a javascript: link is clicked, we should make sure it doesn't do anything.
<rdar://problem/16413270>
Created attachment 288053 [details] [PATCH] Proposed Fix
Comment on attachment 288053 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=288053&action=review r=me (please fix typo) > Source/WebInspectorUI/UserInterface/Base/Main.js:2233 > + if (linkString.startsWith("data:") || linkString.startsWith("javascript:") || linkString.startsWith("mailto")) { This should be mailto:
Created attachment 288067 [details] [PATCH] For Landing
Comment on attachment 288067 [details] [PATCH] For Landing Clearing flags on attachment: 288067 Committed r205529: <http://trac.webkit.org/changeset/205529>