Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: third_party/WebKit/Source/platform/weborigin/KURL.h

Issue 2895953002: Update dangling markup mitigations. (Closed)
Patch Set: Test. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/weborigin/KURL.h
diff --git a/third_party/WebKit/Source/platform/weborigin/KURL.h b/third_party/WebKit/Source/platform/weborigin/KURL.h
index 5479c8e526b13fd88a7421492639d60b72cd7402..156659bf90a2d31ffcfea3d6eff3dbc53517d843 100644
--- a/third_party/WebKit/Source/platform/weborigin/KURL.h
+++ b/third_party/WebKit/Source/platform/weborigin/KURL.h
@@ -192,7 +192,9 @@ class PLATFORM_EXPORT KURL {
bool IsSafeToSendToAnotherThread() const;
- bool WhitespaceRemoved() const { return parsed_.whitespace_removed; }
+ bool PotentiallyDanglingMarkup() const {
+ return parsed_.potentially_dangling_markup;
+ }
private:
void Init(const KURL& base,

Powered by Google App Engine
This is Rietveld 408576698