| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/loader/HttpEquiv.h" | 5 #include "core/loader/HttpEquiv.h" |
| 6 | 6 |
| 7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
| 8 #include "core/dom/StyleEngine.h" | 8 #include "core/dom/StyleEngine.h" |
| 9 #include "core/fetch/ClientHintsPreferences.h" | 9 #include "core/fetch/ClientHintsPreferences.h" |
| 10 #include "core/frame/UseCounter.h" | 10 #include "core/frame/UseCounter.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 void HttpEquiv::processHttpEquivDefaultStyle(Document& document, const AtomicStr
ing& content) | 67 void HttpEquiv::processHttpEquivDefaultStyle(Document& document, const AtomicStr
ing& content) |
| 68 { | 68 { |
| 69 // The preferred style set has been overridden as per section | 69 // The preferred style set has been overridden as per section |
| 70 // 14.3.2 of the HTML4.0 specification. We need to update the | 70 // 14.3.2 of the HTML4.0 specification. We need to update the |
| 71 // sheet used variable and then update our style selector. | 71 // sheet used variable and then update our style selector. |
| 72 // For more info, see the test at: | 72 // For more info, see the test at: |
| 73 // http://www.hixie.ch/tests/evil/css/import/main/preferred.html | 73 // http://www.hixie.ch/tests/evil/css/import/main/preferred.html |
| 74 // -dwh | 74 // -dwh |
| 75 document.styleEngine().setSelectedStylesheetSetName(content); | 75 document.styleEngine().setSelectedStylesheetSetName(content); |
| 76 document.styleEngine().setPreferredStylesheetSetName(content); | 76 document.styleEngine().setPreferredStylesheetSetName(content); |
| 77 document.styleResolverChanged(); | 77 document.styleEngine().resolverChanged(FullStyleUpdate); |
| 78 } | 78 } |
| 79 | 79 |
| 80 void HttpEquiv::processHttpEquivRefresh(Document& document, const AtomicString&
content) | 80 void HttpEquiv::processHttpEquivRefresh(Document& document, const AtomicString&
content) |
| 81 { | 81 { |
| 82 document.maybeHandleHttpRefresh(content, Document::HttpRefreshFromMetaTag); | 82 document.maybeHandleHttpRefresh(content, Document::HttpRefreshFromMetaTag); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void HttpEquiv::processHttpEquivSetCookie(Document& document, const AtomicString
& content) | 85 void HttpEquiv::processHttpEquivSetCookie(Document& document, const AtomicString
& content) |
| 86 { | 86 { |
| 87 // FIXME: make setCookie work on XML documents too; e.g. in case of <html:me
ta .....> | 87 // FIXME: make setCookie work on XML documents too; e.g. in case of <html:me
ta .....> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 110 frame->loader().stopAllLoaders(); | 110 frame->loader().stopAllLoaders(); |
| 111 // Stopping the loader isn't enough, as we're already parsing the document;
to honor the header's | 111 // Stopping the loader isn't enough, as we're already parsing the document;
to honor the header's |
| 112 // intent, we must navigate away from the possibly partially-rendered docume
nt to a location that | 112 // intent, we must navigate away from the possibly partially-rendered docume
nt to a location that |
| 113 // doesn't inherit the parent's SecurityOrigin. | 113 // doesn't inherit the parent's SecurityOrigin. |
| 114 // TODO(dglazkov): This should probably check document lifecycle instead. | 114 // TODO(dglazkov): This should probably check document lifecycle instead. |
| 115 if (document.frame()) | 115 if (document.frame()) |
| 116 frame->navigate(document, SecurityOrigin::urlWithUniqueSecurityOrigin(),
true, UserGestureStatus::None); | 116 frame->navigate(document, SecurityOrigin::urlWithUniqueSecurityOrigin(),
true, UserGestureStatus::None); |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace blink | 119 } // namespace blink |
| OLD | NEW |