Summary: | Deprecate Application Cache | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Alex Christensen <achristensen> | ||||||
Component: | New Bugs | Assignee: | Alex Christensen <achristensen> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | ews-watchlist, ggaren, hongkongvers, joepeck, ramtin.beheshti, webkit-bug-importer | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Alex Christensen
2018-01-17 14:06:34 PST
Created attachment 331540 [details]
Patch
Comment on attachment 331540 [details]
Patch
r=me
I think we should include a warning to the console on pages that make use of ApplicationCache.
We did this in the past for things like webkitSubtle:
> if (!m_webkitSubtle) {
> m_webkitSubtle = WebKitSubtleCrypto::create(*downcast<Document>(scriptExecutionContext()));
> scriptExecutionContext()->addConsoleMessage(MessageSource::Other, MessageLevel::Warning, ASCIILiteral("WebKitSubtleCrypto is deprecated. Please use SubtleCrypto instead."));
> }
Let's do it |