1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
|
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "third_party/blink/renderer/core/frame/frame_serializer.h"
#include <optional>
#include "base/metrics/histogram_functions.h"
#include "base/timer/elapsed_timer.h"
#include "services/network/public/cpp/resource_request.h"
#include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h"
#include "third_party/blink/public/web/web_frame_serializer.h"
#include "third_party/blink/renderer/core/css/css_font_face_rule.h"
#include "third_party/blink/renderer/core/css/css_font_face_src_value.h"
#include "third_party/blink/renderer/core/css/css_image_value.h"
#include "third_party/blink/renderer/core/css/css_import_rule.h"
#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/css/css_rule_list.h"
#include "third_party/blink/renderer/core/css/css_style_declaration.h"
#include "third_party/blink/renderer/core/css/css_style_rule.h"
#include "third_party/blink/renderer/core/css/css_style_sheet.h"
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/css/style_rule.h"
#include "third_party/blink/renderer/core/css/style_sheet_contents.h"
#include "third_party/blink/renderer/core/dom/attribute.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/dom/shadow_root.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/serializers/markup_accumulator.h"
#include "third_party/blink/renderer/core/frame/frame.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/html/custom/custom_element.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_registry.h"
#include "third_party/blink/renderer/core/html/forms/html_input_element.h"
#include "third_party/blink/renderer/core/html/html_anchor_element.h"
#include "third_party/blink/renderer/core/html/html_frame_element_base.h"
#include "third_party/blink/renderer/core/html/html_frame_owner_element.h"
#include "third_party/blink/renderer/core/html/html_head_element.h"
#include "third_party/blink/renderer/core/html/html_html_element.h"
#include "third_party/blink/renderer/core/html/html_iframe_element.h"
#include "third_party/blink/renderer/core/html/html_image_element.h"
#include "third_party/blink/renderer/core/html/html_image_loader.h"
#include "third_party/blink/renderer/core/html/html_link_element.h"
#include "third_party/blink/renderer/core/html/html_meta_element.h"
#include "third_party/blink/renderer/core/html/html_no_script_element.h"
#include "third_party/blink/renderer/core/html/html_picture_element.h"
#include "third_party/blink/renderer/core/html/html_plugin_element.h"
#include "third_party/blink/renderer/core/html/html_script_element.h"
#include "third_party/blink/renderer/core/html/html_style_element.h"
#include "third_party/blink/renderer/core/html/html_template_element.h"
#include "third_party/blink/renderer/core/html/image_document.h"
#include "third_party/blink/renderer/core/html/link_rel_attribute.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/input_type_names.h"
#include "third_party/blink/renderer/core/layout/layout_box.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"
#include "third_party/blink/renderer/core/loader/resource/font_resource.h"
#include "third_party/blink/renderer/core/loader/resource/image_resource_content.h"
#include "third_party/blink/renderer/core/page/chrome_client.h"
#include "third_party/blink/renderer/core/page/page.h"
#include "third_party/blink/renderer/core/style/style_fetched_image.h"
#include "third_party/blink/renderer/core/style/style_image.h"
#include "third_party/blink/renderer/core/svg/svg_image_element.h"
#include "third_party/blink/renderer/platform/graphics/image.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_set.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h"
#include "third_party/blink/renderer/platform/loader/fetch/fetch_parameters.h"
#include "third_party/blink/renderer/platform/loader/fetch/raw_resource.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_fetcher.h"
#include "third_party/blink/renderer/platform/mhtml/mhtml_parser.h"
#include "third_party/blink/renderer/platform/mhtml/serialized_resource.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
#include "third_party/blink/renderer/platform/wtf/text/strcat.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/text_encoding.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/uuid.h"
namespace blink {
namespace internal {
// TODO(crbug.com/363289333): Try to add this functionality to wtf::String.
String ReplaceAllCaseInsensitive(
String source,
const String& from,
base::FunctionRef<String(const String&)> transform) {
size_t offset = 0;
size_t pos;
StringBuilder builder;
for (;;) {
pos = source.Find(from, offset,
TextCaseSensitivity::kTextCaseASCIIInsensitive);
if (pos == kNotFound) {
break;
}
builder.Append(source.Substring(offset, pos - offset));
builder.Append(transform(source.Substring(pos, from.length())));
offset = pos + from.length();
}
if (builder.empty()) {
return source;
}
builder.Append(source.Substring(offset));
return builder.ToString();
}
} // namespace internal
namespace {
const int kPopupOverlayZIndexThreshold = 50;
// Note that this is *not* the open web's declarative shadow DOM attribute,
// which is <template shadowrootmode>. This is a special attribute used by
// MHTML archive files to represent shadow roots.
const char kShadowModeAttributeName[] = "shadowmode";
const char kShadowDelegatesFocusAttributeName[] = "shadowdelegatesfocus";
using mojom::blink::FormControlType;
KURL MakePseudoUrl(StringView type) {
return KURL(WTF::StrCat(
{"cid:", type, "-", WTF::CreateCanonicalUUIDString(), "@mhtml.blink"}));
}
KURL MakePseudoCSSUrl() {
return MakePseudoUrl("css");
}
void AppendLinkElement(StringBuilder& markup, const KURL& url) {
markup.Append(R"(<link rel="stylesheet" type="text/css" href=")");
markup.Append(url.GetString());
markup.Append("\" />");
}
// There are several improvements being added behind this flag. So far, it
// covers:
// * Serialize adopted stylesheets
// * Serialize styleSheets on shadow roots
// * Retain stylesheet order, previously order of stylesheets
// was sometimes wrong.
// * Serialize <style> nodes as <style> nodes instead of <link> nodes.
// * Leave <style> nodes alone if their stylesheet is unmodified.
// * Injects a script into the serialized HTML to define custom elements to
// ensure the same custom element names are defined.
// * Fonts are fetched.
bool MHTMLImprovementsEnabled() {
return base::FeatureList::IsEnabled(blink::features::kMHTML_Improvements);
}
class MultiResourcePacker;
// A `RawResourceClient` that waits for the resource to load.
class ResourceWaiter : public GarbageCollected<ResourceWaiter>,
public RawResourceClient {
public:
explicit ResourceWaiter(MultiResourcePacker* packer,
mojom::blink::RequestContextType context_type)
: packer_(packer), context_type_(context_type) {}
void NotifyFinished(Resource* resource) override;
void Trace(Visitor* visitor) const override;
std::optional<SerializedResource> TakeResource() {
return std::move(serialized_resource_);
}
String DebugName() const override { return "FrameSerializerResourceWaiter"; }
private:
Member<MultiResourcePacker> packer_;
std::optional<SerializedResource> serialized_resource_;
mojom::blink::RequestContextType context_type_;
};
// Stores the list of serialized resources which constitute the frame. The
// first resource should be the frame's content (usually HTML).
class MultiResourcePacker : public GarbageCollected<MultiResourcePacker> {
public:
explicit MultiResourcePacker(
WebFrameSerializer::MHTMLPartsGenerationDelegate* web_delegate)
: web_delegate_(web_delegate) {}
void Trace(Visitor* visitor) const { visitor->Trace(resource_waiters_); }
bool HasResource(const KURL& url) const {
return resource_urls_.Contains(url);
}
void AddMainResource(const String& mime_type,
scoped_refptr<const SharedBuffer> data,
const KURL& url) {
// The main resource must be first.
// We do not call `ShouldAddURL()` for the main resource.
resources_.emplace_front(
SerializedResource(url, mime_type, std::move(data)));
}
void AddToResources(SerializedResource serialized_resource) {
resources_.push_back(std::move(serialized_resource));
}
void AddToResources(const String& mime_type,
scoped_refptr<const SharedBuffer> data,
const KURL& url) {
if (!data) {
DLOG(ERROR) << "No data for resource " << url.GetString();
return;
}
CHECK(resource_urls_.Contains(url))
<< "ShouldAddURL() not called before AddToResources";
resources_.emplace_front(
SerializedResource(url, mime_type, std::move(data)));
}
void AddImageToResources(ImageResourceContent* image, const KURL& url) {
if (!image || !image->HasImage() || image->ErrorOccurred() ||
!ShouldAddURL(url)) {
return;
}
TRACE_EVENT2("page-serialization", "FrameSerializer::addImageToResources",
"type", "image", "url", url.ElidedString().Utf8());
AddToResources(image->GetResponse().MimeType(), image->GetImage()->Data(),
url);
}
// Returns whether the resource for `url` should be added. This will return
// true only once for a `url`, because we only want to store each resource
// once.
bool ShouldAddURL(const KURL& url) {
bool should_add = url.IsValid() && !resource_urls_.Contains(url) &&
!url.ProtocolIsData() &&
!web_delegate_->ShouldSkipResource(url);
if (should_add) {
// Make sure that `ShouldAddURL()` returns true only once for any given
// URL. This is done because `ShouldSkipResource()` has the hidden
// behavior of tracking which resources are being added. This is why we
// must call it only once per url.
resource_urls_.insert(url);
}
return should_add;
}
void OldAddFontToResources(FontResource& font) {
if (!font.IsLoaded() || !font.ResourceBuffer()) {
return;
}
if (!ShouldAddURL(font.Url())) {
return;
}
AddToResources(font.GetResponse().MimeType(), font.ResourceBuffer(),
font.Url());
}
// Fetch `url` and add it to the list of resources. Only adds the resource if
// `ShouldAddURL()` returns true. The resource is fetched async, and won't be
// available until after `Finish()` completes. If the fetch fails, no resource
// is added.
void FetchAndAddResource(Document& document,
const KURL& url,
mojom::blink::RequestContextType context_type,
mojom::blink::FetchCacheMode fetch_cache_mode) {
if (!ShouldAddURL(url)) {
return;
}
// Add a resource entry pointing to the new `ResourceWaiter`.
ResourceEntry entry;
entry.waiter_index = resource_waiters_.size();
resources_.push_back(std::move(entry));
// Start fetching the resource data.
ResourceLoaderOptions loader_options(
document.GetExecutionContext()->GetCurrentWorld());
ResourceRequest request(url);
request.SetCacheMode(fetch_cache_mode);
request.SetRequestContext(context_type);
FetchParameters fetch_params(std::move(request), loader_options);
auto* waiter = MakeGarbageCollected<ResourceWaiter>(this, context_type);
RawResource::Fetch(fetch_params, document.Fetcher(), waiter);
resource_waiters_.push_back(waiter);
}
void AddFontToResources(Document& document, FontResource& font) {
if (!MHTMLImprovementsEnabled()) {
OldAddFontToResources(font);
return;
}
// Check if the font is loaded. Loaded fonts may not have raw resource data,
// so we ignore `font.ResourceBuffer()`.
if (!font.GetCustomFontData()) {
return;
}
// MHTML serialization is run frequently on Android Chrome to save pages
// after they are loaded, so that they can be restored later without an
// internet connection. `kForceCache` avoids adding additional network
// requests that could impact performance. If a font isn't cached, the
// fallback font is typically usable.
FetchAndAddResource(document, font.Url(),
mojom::blink::RequestContextType::FONT,
mojom::blink::FetchCacheMode::kForceCache);
}
void Finish(base::OnceCallback<void(Deque<SerializedResource>)>
resources_ready_callback) {
resources_ready_callback_ = std::move(resources_ready_callback);
finished_ = true;
CallReadyIfFinished();
}
void ResourceFetchComplete() {
++resource_done_count_;
CallReadyIfFinished();
}
private:
struct ResourceEntry {
ResourceEntry() = default;
explicit ResourceEntry(std::optional<SerializedResource> r)
: resource(std::move(r)) {}
// The serialized resource. May be nullopt for resources loaded
// asynchronously.
std::optional<SerializedResource> resource;
// For asynchronously loaded resources, this is the index into
// `resource_waiters_`.
std::optional<wtf_size_t> waiter_index;
};
void CallReadyIfFinished() {
if (finished_ && resource_done_count_ == resource_waiters_.size()) {
Deque<SerializedResource> resources;
for (ResourceEntry& entry : resources_) {
if (entry.waiter_index) {
entry.resource =
resource_waiters_[*entry.waiter_index]->TakeResource();
}
if (entry.resource) {
resources.push_back(std::move(*entry.resource));
}
}
resources_.clear();
base::UmaHistogramTimes("PageSerialization.Mhtml.FrameSerializerTime",
timer_.Elapsed());
std::move(resources_ready_callback_).Run(std::move(resources));
}
}
base::ElapsedTimer timer_;
// This hashset is only used for de-duplicating resources to be serialized.
HashSet<KURL> resource_urls_;
Deque<ResourceEntry> resources_;
WebFrameSerializer::MHTMLPartsGenerationDelegate* web_delegate_;
// Whether `Finish()` has been called.
bool finished_ = false;
// Number of `ResourceWaiter`s that have completed.
wtf_size_t resource_done_count_ = 0;
HeapVector<Member<ResourceWaiter>> resource_waiters_;
base::OnceCallback<void(Deque<SerializedResource>)> resources_ready_callback_;
};
void ResourceWaiter::Trace(Visitor* visitor) const {
RawResourceClient::Trace(visitor);
visitor->Trace(packer_);
}
void ResourceWaiter::NotifyFinished(Resource* resource) {
bool fetched = !resource->ErrorOccurred() && resource->ResourceBuffer();
if (fetched) {
serialized_resource_ =
SerializedResource(resource->Url(), resource->GetResponse().MimeType(),
resource->ResourceBuffer());
}
if (context_type_ == mojom::blink::RequestContextType::FONT) {
base::UmaHistogramBoolean("PageSerialization.Mhtml.Fetched.Font", fetched);
} else if (context_type_ == mojom::blink::RequestContextType::STYLE) {
base::UmaHistogramBoolean("PageSerialization.Mhtml.Fetched.Style", fetched);
}
packer_->ResourceFetchComplete();
resource->RemoveClient(this);
}
class SerializerMarkupAccumulator : public MarkupAccumulator {
STACK_ALLOCATED();
public:
SerializerMarkupAccumulator(
MultiResourcePacker* resource_serializer,
WebFrameSerializer::MHTMLPartsGenerationDelegate* web_delegate,
Document& document)
: MarkupAccumulator(kResolveAllURLs,
IsA<HTMLDocument>(document) ? SerializationType::kHTML
: SerializationType::kXML,
ShadowRootInclusion()),
resource_serializer_(resource_serializer),
web_delegate_(web_delegate),
document_(&document) {}
~SerializerMarkupAccumulator() override = default;
private:
bool ShouldIgnoreHiddenElement(const Element& element) const {
// If an iframe is in the head, it will be moved to the body when the page
// is being loaded. But if an iframe is injected into the head later, it
// will stay there and not been displayed. To prevent it from being brought
// to the saved page and cause it being displayed, we should not include it.
if (IsA<HTMLIFrameElement>(element) &&
Traversal<HTMLHeadElement>::FirstAncestor(element)) {
return true;
}
// Do not include the element that is marked with hidden attribute.
if (element.FastHasAttribute(html_names::kHiddenAttr)) {
return true;
}
// Do not include the hidden form element.
auto* html_element_element = DynamicTo<HTMLInputElement>(&element);
return html_element_element && html_element_element->FormControlType() ==
FormControlType::kInputHidden;
}
bool ShouldIgnoreMetaElement(const Element& element) const {
// Do not include meta elements that declare Content-Security-Policy
// directives. They should have already been enforced when the original
// document is loaded. Since only the rendered resources are encapsulated in
// the saved MHTML page, there is no need to carry the directives. If they
// are still kept in the MHTML, child frames that are referred to using cid:
// scheme could be prevented from loading.
if (!IsA<HTMLMetaElement>(element)) {
return false;
}
if (!element.FastHasAttribute(html_names::kContentAttr)) {
return false;
}
const AtomicString& http_equiv =
element.FastGetAttribute(html_names::kHttpEquivAttr);
return http_equiv == "Content-Security-Policy";
}
bool ShouldIgnorePopupOverlayElement(const Element& element) const {
// The element should be visible.
LayoutBox* box = element.GetLayoutBox();
if (!box) {
return false;
}
// The bounding box of the element should contain center point of the
// viewport.
LocalDOMWindow* window = element.GetDocument().domWindow();
DCHECK(window);
int center_x = window->innerWidth() / 2;
int center_y = window->innerHeight() / 2;
if (Page* page = element.GetDocument().GetPage()) {
center_x = page->GetChromeClient().WindowToViewportScalar(
window->GetFrame(), center_x);
center_y = page->GetChromeClient().WindowToViewportScalar(
window->GetFrame(), center_y);
}
if (!PhysicalRect(box->PhysicalLocation(), box->Size())
.Contains(LayoutUnit(center_x), LayoutUnit(center_y))) {
return false;
}
// The z-index should be greater than the threshold.
if (box->Style()->EffectiveZIndex() < kPopupOverlayZIndexThreshold) {
return false;
}
popup_overlays_skipped_ = true;
return true;
}
EmitAttributeChoice WillProcessAttribute(
const Element& element,
const Attribute& attribute) const override {
// TODO(fgorski): Presence of srcset attribute causes MHTML to not display
// images, as only the value of src is pulled into the archive. Discarding
// srcset prevents the problem. Long term we should make sure to MHTML plays
// nicely with srcset.
if (IsA<HTMLImageElement>(element) &&
(attribute.LocalName() == html_names::kSrcsetAttr ||
attribute.LocalName() == html_names::kSizesAttr)) {
return EmitAttributeChoice::kIgnore;
}
// Do not save ping attribute since anyway the ping will be blocked from
// MHTML.
// TODO(crbug.com/369219144): Should this be IsA<HTMLAnchorElementBase>?
if (IsA<HTMLAnchorElement>(element) &&
attribute.LocalName() == html_names::kPingAttr) {
return EmitAttributeChoice::kIgnore;
}
// The special attribute in a template element to denote the shadow DOM
// should only be generated from MHTML serialization. If it is found in the
// original page, it should be ignored.
if (IsA<HTMLTemplateElement>(element) &&
(attribute.LocalName() == kShadowModeAttributeName ||
attribute.LocalName() == kShadowDelegatesFocusAttributeName) &&
!shadow_template_elements_.Contains(&element)) {
return EmitAttributeChoice::kIgnore;
}
// If srcdoc attribute for frame elements will be rewritten as src attribute
// containing link instead of html contents, don't ignore the attribute.
// Bail out now to avoid the check in Element::isScriptingAttribute.
bool is_src_doc_attribute = IsA<HTMLFrameElementBase>(element) &&
attribute.GetName() == html_names::kSrcdocAttr;
String new_link_for_the_element;
if (is_src_doc_attribute &&
RewriteLink(element, new_link_for_the_element)) {
return EmitAttributeChoice::kEmit;
}
// Drop integrity attribute for those links with subresource loaded.
auto* html_link_element = DynamicTo<HTMLLinkElement>(element);
if (attribute.LocalName() == html_names::kIntegrityAttr &&
html_link_element && html_link_element->sheet()) {
return EmitAttributeChoice::kIgnore;
}
// Do not include attributes that contain javascript. This is because the
// script will not be executed when a MHTML page is being loaded.
if (element.IsScriptingAttribute(attribute)) {
return EmitAttributeChoice::kIgnore;
}
return EmitAttributeChoice::kEmit;
}
bool RewriteLink(const Element& element, String& rewritten_link) const {
auto* frame_owner = DynamicTo<HTMLFrameOwnerElement>(element);
if (!frame_owner) {
return false;
}
Frame* frame = frame_owner->ContentFrame();
if (!frame) {
return false;
}
KURL cid_uri = MHTMLParser::ConvertContentIDToURI(
FrameSerializer::GetContentID(frame));
DCHECK(cid_uri.IsValid());
rewritten_link = cid_uri.GetString();
return true;
}
Vector<Attribute> GetCustomAttributes(const Element& element) {
Vector<Attribute> attributes;
if (auto* image = DynamicTo<HTMLImageElement>(element)) {
GetCustomAttributesForImageElement(*image, &attributes);
}
return attributes;
}
void GetCustomAttributesForImageElement(const HTMLImageElement& element,
Vector<Attribute>* attributes) {
// Currently only the value of src is pulled into the archive and the srcset
// attribute is ignored (see shouldIgnoreAttribute() above). If the device
// has a higher DPR, a different image from srcset could be loaded instead.
// When this occurs, we should provide the rendering width and height for
// <img> element if not set.
// The image should be loaded and participate the layout.
ImageResourceContent* image = element.CachedImage();
if (!image || !image->HasImage() || image->ErrorOccurred() ||
!element.GetLayoutObject()) {
return;
}
// The width and height attributes should not be set.
if (element.FastHasAttribute(html_names::kWidthAttr) ||
element.FastHasAttribute(html_names::kHeightAttr)) {
return;
}
// Check if different image is loaded. naturalWidth/naturalHeight will
// return the image size adjusted with current DPR.
if ((static_cast<int>(element.naturalWidth())) ==
image->GetImage()->width() &&
(static_cast<int>(element.naturalHeight())) ==
image->GetImage()->height()) {
return;
}
Attribute width_attribute(html_names::kWidthAttr,
AtomicString::Number(element.LayoutBoxWidth()));
attributes->push_back(width_attribute);
Attribute height_attribute(html_names::kHeightAttr,
AtomicString::Number(element.LayoutBoxHeight()));
attributes->push_back(height_attribute);
}
std::pair<ShadowRoot*, HTMLTemplateElement*> GetShadowTree(
const Element& element) const override {
ShadowRoot* shadow_root = element.GetShadowRoot();
if (!shadow_root || shadow_root->GetMode() == ShadowRootMode::kUserAgent) {
return std::pair<ShadowRoot*, HTMLTemplateElement*>();
}
// Put the shadow DOM content inside a template element. A special attribute
// is set to tell the mode of the shadow DOM.
HTMLTemplateElement* template_element =
MakeGarbageCollected<HTMLTemplateElement>(element.GetDocument());
template_element->setAttribute(
QualifiedName(AtomicString(kShadowModeAttributeName)),
AtomicString(shadow_root->GetMode() == ShadowRootMode::kOpen
? "open"
: "closed"));
if (shadow_root->delegatesFocus()) {
template_element->setAttribute(
QualifiedName(AtomicString(kShadowDelegatesFocusAttributeName)),
g_empty_atom);
}
shadow_template_elements_.insert(template_element);
return std::pair<ShadowRoot*, HTMLTemplateElement*>(shadow_root,
template_element);
}
void AppendCustomAttributes(const Element& element) override {
Vector<Attribute> attributes = GetCustomAttributes(element);
for (const auto& attribute : attributes) {
AppendAttribute(element, attribute);
}
}
EmitElementChoice WillProcessElement(const Element& element) override {
if (IsA<HTMLScriptElement>(element)) {
return EmitElementChoice::kIgnore;
}
if (IsA<HTMLNoScriptElement>(element)) {
return EmitElementChoice::kIgnore;
}
auto* meta = DynamicTo<HTMLMetaElement>(element);
if (meta && meta->ComputeEncoding().IsValid()) {
return EmitElementChoice::kIgnore;
}
if (MHTMLImprovementsEnabled()) {
// When `MHTMLImprovementsEnabled()`, we replace <style> with a <link> to
// the serialized style sheet.
if (const HTMLStyleElement* style_element =
DynamicTo<HTMLStyleElement>(element)) {
CSSStyleSheet* sheet = style_element->sheet();
if (sheet) {
// JS may update styles programmatically for a <style> node. We detect
// whether this has happened, and serialize the stylesheet if it has.
// Otherwise, we leave the <style> node unmodified. Because CSS
// serialization isn't perfect, it's better to leave the original
// <style> element if possible.
SerializeCSSResources(*sheet);
if (!sheet->Contents()->IsMutable()) {
return EmitElementChoice::kEmit;
} else {
style_elements_to_replace_contents_.insert(style_element);
return EmitElementChoice::kEmitButIgnoreChildren;
}
}
}
} else {
// A <link> element is inserted in `AppendExtraForHeadElement()` as a
// substitute for this element.
if (IsA<HTMLStyleElement>(element)) {
return EmitElementChoice::kIgnore;
}
}
if (ShouldIgnoreHiddenElement(element)) {
return EmitElementChoice::kIgnore;
}
if (ShouldIgnoreMetaElement(element)) {
return EmitElementChoice::kIgnore;
}
if (web_delegate_->RemovePopupOverlay() &&
ShouldIgnorePopupOverlayElement(element)) {
return EmitElementChoice::kIgnore;
}
// Remove <link> for stylesheets that do not load.
auto* html_link_element = DynamicTo<HTMLLinkElement>(element);
if (html_link_element && html_link_element->RelAttribute().IsStyleSheet() &&
!html_link_element->sheet()) {
return EmitElementChoice::kIgnore;
}
return MarkupAccumulator::WillProcessElement(element);
}
void WillCloseSyntheticTemplateElement(ShadowRoot& auxiliary_tree) override {
if (MHTMLImprovementsEnabled()) {
AppendAdoptedStyleSheets(&auxiliary_tree);
}
}
AtomicString AppendElement(const Element& element) override {
AtomicString prefix = MarkupAccumulator::AppendElement(element);
if (IsA<HTMLHeadElement>(element)) {
AppendExtraForHeadElement(element);
}
AddResourceForElement(*document_, element);
// FIXME: For object (plugins) tags and video tag we could replace them by
// an image of their current contents.
return prefix;
}
void AppendEndTag(const Element& element,
const AtomicString& prefix) override {
if (MHTMLImprovementsEnabled()) {
// Add adopted stylesheets to the very end of the document, so they
// processed after other stylesheets.
if (IsA<HTMLHtmlElement>(element)) {
AppendAdoptedStyleSheets(document_);
}
if (const HTMLStyleElement* style_element =
DynamicTo<HTMLStyleElement>(element)) {
if (style_elements_to_replace_contents_.Contains(style_element)) {
CSSStyleSheet* sheet = style_element->sheet();
markup_.Append(SerializeInlineCSSStyleSheet(*sheet));
}
}
}
MarkupAccumulator::AppendEndTag(element, prefix);
}
void AppendExtraForHeadElement(const Element& element) {
DCHECK(IsA<HTMLHeadElement>(element));
// TODO(tiger): Refactor MarkupAccumulator so it is easier to append an
// element like this, without special cases for XHTML
markup_.Append("<meta http-equiv=\"Content-Type\" content=\"");
AppendAttributeValue(document_->SuggestedMIMEType());
markup_.Append("; charset=");
AppendAttributeValue(document_->characterSet());
if (document_->IsXHTMLDocument()) {
markup_.Append("\" />");
} else {
markup_.Append("\">");
}
// The CSS rules of a style element can be updated dynamically independent
// of the CSS text included in the style element. So we can't use the inline
// CSS text defined in the style element. To solve this, we serialize the
// working CSS rules in document.stylesheets and document.adoptedStyleSheets
// and wrap them in link elements.
// Adopted stylesheets are evaluated last, so we append them last.
if (!MHTMLImprovementsEnabled()) {
AppendStylesheets(document_->StyleSheets(), true /*style_element_only*/);
}
if (MHTMLImprovementsEnabled()) {
markup_.Append("<script src=\"");
KURL script_url = MakePseudoUrl("js");
markup_.Append(script_url.GetString());
markup_.Append("\"></script>");
AddScriptResource(*document_, script_url);
}
}
// Adds a script resource to restore some functionality to the serialized
// HTML. We're including this self-contained blob of JS in the MHTML file
// instead of compiling it into Chromium because it requires additional
// information about custom elements, and packaging the metadata in another
// format would require versioning, whereas JS allows it to be all
// encapsulated.
void AddScriptResource(Document& document, const KURL& script_url) {
// Currently, the embedded JS here has one job. It restores the custom
// element registry when loading the saved page, to enough fidelity to
// ensure the CSS 'defined' selector works.
// https://html.spec.whatwg.org/multipage/semantics-other.html#selector-defined.
// Note that we do not need to actually restore any other functionality to
// the custom elements because we are already saving a snapshot of the
// element's shadow DOM, and our goal is to save a static snapshot of the
// page.
auto metadata = std::make_unique<JSONObject>();
auto custom_elements = std::make_unique<JSONArray>();
CustomElementRegistry* custom_registry = CustomElement::Registry(document);
if (custom_registry) {
for (const AtomicString& name : custom_registry->DefinedNames()) {
CustomElementDefinition* definition =
custom_registry->DefinitionForName(name);
auto saved_definition = std::make_unique<JSONObject>();
// There are two types of custom elements.
// 1. autonomous elements, which always extend HTMLElement.
// 2. customized built-in elements, which can extend standard HTML
// elements. Here, "local_name" is the name of the extended element,
// i.e. HTMLParagraphElement.
saved_definition->SetString("name", name);
saved_definition->SetBoolean("is_autonomous",
definition->Descriptor().IsAutonomous());
if (!definition->Descriptor().IsAutonomous()) {
saved_definition->SetString("local_name",
definition->Descriptor().LocalName());
}
custom_elements->PushObject(std::move(saved_definition));
}
}
metadata->SetArray("custom_elements", std::move(custom_elements));
// Note that we try/catch for addCustomElement below because it's possible
// but not expected for it to fail, i.e. if standard HTML element type is
// removed.
StringView main_script = R"js(
function addCustomElement(def) {
if (def.is_autonomous) {
window.customElements.define(def.name, class extends HTMLElement{});
} else {
const templateElement = document.createElement(def.local_name);
const baseName = Object.getPrototypeOf(templateElement).constructor.name;
const ElementBase = window[baseName];
window.customElements.define(def.name, class extends ElementBase {},
{extends: def.local_name});
}
}
function addCustomElements(metadata) {
for (const def of metadata.custom_elements) {
try {
addCustomElement(def);
} catch (e) {
console.log(e);
}
}
}
function main(metadata) {
addCustomElements(metadata);
}
)js";
StringBuilder builder;
builder.Append("(()=>{");
{
builder.Append(main_script);
builder.Append("main(");
metadata->WriteJSON(&builder);
builder.Append(");");
}
builder.Append("})();");
resource_serializer_->AddToResources(SerializedResource(
script_url, "text/javascript",
SharedBuffer::Create(builder.ToString().RawByteSpan())));
}
// Add `sheet` as a new resource and emit a <link> element to load it.
void AppendStylesheet(StyleSheet& sheet) {
if (!sheet.IsCSSStyleSheet() || sheet.disabled()) {
return;
}
KURL pseudo_sheet_url = MakePseudoCSSUrl();
AppendLinkElement(markup_, pseudo_sheet_url);
SerializeCSSStyleSheet(static_cast<CSSStyleSheet&>(sheet),
pseudo_sheet_url);
}
void AppendStylesheets(StyleSheetList& sheets, bool style_element_only) {
for (unsigned i = 0; i < sheets.length(); ++i) {
StyleSheet* sheet = sheets.item(i);
if (style_element_only && !IsA<HTMLStyleElement>(sheet->ownerNode())) {
continue;
}
AppendStylesheet(*sheet);
}
}
// Appends <link> elements to construct the same styles from `root`'s
// `AdoptedStyleSheets()`.
void AppendAdoptedStyleSheets(TreeScope* root) {
auto* sheets = root->AdoptedStyleSheets();
if (!sheets) {
return;
}
for (blink::CSSStyleSheet* sheet : *sheets) {
// Serialize the stylesheet only the first time it's visited.
KURL pseudo_sheet_url;
auto iter = stylesheet_pseudo_urls_.find(sheet);
if (iter != stylesheet_pseudo_urls_.end()) {
pseudo_sheet_url = iter->value;
} else {
pseudo_sheet_url = MakePseudoCSSUrl();
SerializeCSSStyleSheet(static_cast<CSSStyleSheet&>(*sheet),
pseudo_sheet_url);
stylesheet_pseudo_urls_.insert(sheet, pseudo_sheet_url);
}
AppendLinkElement(markup_, pseudo_sheet_url);
}
}
void AppendStylesheets(Document* document, bool style_element_only) {
StyleSheetList& sheets = document->StyleSheets();
for (unsigned i = 0; i < sheets.length(); ++i) {
StyleSheet* sheet = sheets.item(i);
if (!sheet->IsCSSStyleSheet() || sheet->disabled()) {
continue;
}
if (style_element_only && !IsA<HTMLStyleElement>(sheet->ownerNode())) {
continue;
}
KURL pseudo_sheet_url = MakePseudoCSSUrl();
AppendLinkElement(markup_, pseudo_sheet_url);
SerializeCSSStyleSheet(static_cast<CSSStyleSheet&>(*sheet),
pseudo_sheet_url);
}
}
void AppendAttribute(const Element& element,
const Attribute& attribute) override {
// Check if link rewriting can affect the attribute.
bool is_link_attribute = element.HasLegalLinkAttribute(attribute.GetName());
bool is_src_doc_attribute = IsA<HTMLFrameElementBase>(element) &&
attribute.GetName() == html_names::kSrcdocAttr;
if (is_link_attribute || is_src_doc_attribute) {
// Check if the delegate wants to do link rewriting for the element.
String new_link_for_the_element;
if (RewriteLink(element, new_link_for_the_element)) {
if (is_link_attribute) {
// Rewrite element links.
AppendRewrittenAttribute(element, attribute.GetName().ToString(),
new_link_for_the_element);
} else {
DCHECK(is_src_doc_attribute);
// Emit src instead of srcdoc attribute for frame elements - we want
// the serialized subframe to use html contents from the link provided
// by Delegate::rewriteLink rather than html contents from srcdoc
// attribute.
AppendRewrittenAttribute(element, html_names::kSrcAttr.LocalName(),
new_link_for_the_element);
}
return;
}
}
// Fallback to appending the original attribute.
MarkupAccumulator::AppendAttribute(element, attribute);
}
void AppendAttributeValue(const String& attribute_value) {
MarkupFormatter::AppendAttributeValue(
markup_, attribute_value, IsA<HTMLDocument>(document_), *document_);
}
void AppendRewrittenAttribute(const Element& element,
const String& attribute_name,
const String& attribute_value) {
if (elements_with_rewritten_links_.Contains(&element)) {
return;
}
elements_with_rewritten_links_.insert(&element);
// Append the rewritten attribute.
// TODO(tiger): Refactor MarkupAccumulator so it is easier to append an
// attribute like this.
markup_.Append(' ');
markup_.Append(attribute_name);
markup_.Append("=\"");
AppendAttributeValue(attribute_value);
markup_.Append("\"");
}
void AddResourceForElement(Document& document, const Element& element) {
// We have to process in-line style as it might contain some resources
// (typically background images).
if (element.IsStyledElement()) {
RetrieveResourcesForProperties(element.InlineStyle(), document);
RetrieveResourcesForProperties(
const_cast<Element&>(element).PresentationAttributeStyle(), document);
}
if (const auto* image = DynamicTo<HTMLImageElement>(element)) {
AtomicString image_url_value;
const Element* parent = element.parentElement();
if (parent && IsA<HTMLPictureElement>(parent)) {
// If parent element is <picture>, use ImageSourceURL() to get best fit
// image URL from sibling source.
image_url_value = image->ImageSourceURL();
} else {
// Otherwise, it is single <img> element. We should get image url
// contained in href attribute. ImageSourceURL() may return a different
// URL from srcset attribute.
image_url_value = image->FastGetAttribute(html_names::kSrcAttr);
}
ImageResourceContent* cached_image = image->CachedImage();
resource_serializer_->AddImageToResources(
cached_image, document.CompleteURL(image_url_value));
} else if (const auto* svg_image = DynamicTo<SVGImageElement>(element)) {
if (MHTMLImprovementsEnabled()) {
ImageResourceContent* cached_image = svg_image->CachedImage();
if (cached_image) {
resource_serializer_->AddImageToResources(
cached_image, document.CompleteURL(svg_image->SourceURL()));
}
}
} else if (const auto* input = DynamicTo<HTMLInputElement>(element)) {
if (input->FormControlType() == FormControlType::kInputImage &&
input->ImageLoader()) {
KURL image_url = input->Src();
ImageResourceContent* cached_image = input->ImageLoader()->GetContent();
resource_serializer_->AddImageToResources(cached_image, image_url);
}
} else if (const auto* link = DynamicTo<HTMLLinkElement>(element)) {
if (CSSStyleSheet* sheet = link->sheet()) {
KURL sheet_url =
document.CompleteURL(link->FastGetAttribute(html_names::kHrefAttr));
if (MHTMLImprovementsEnabled()) {
SerializeCSSResources(*sheet);
SerializeCSSFile(document, sheet_url);
} else {
SerializeCSSStyleSheet(*sheet, sheet_url);
}
}
} else if (const auto* style = DynamicTo<HTMLStyleElement>(element)) {
if (CSSStyleSheet* sheet = style->sheet()) {
SerializeCSSStyleSheet(*sheet, NullURL());
}
} else if (const auto* plugin = DynamicTo<HTMLPlugInElement>(&element)) {
if (plugin->IsImageType() && plugin->ImageLoader()) {
KURL image_url = document.CompleteURL(plugin->Url());
ImageResourceContent* cached_image =
plugin->ImageLoader()->GetContent();
resource_serializer_->AddImageToResources(cached_image, image_url);
}
}
}
// Serializes `style_sheet` as text that can be added to an inline <style>
// tag. Ensures the style sheet does not include the </style> end tag.
String SerializeInlineCSSStyleSheet(CSSStyleSheet& style_sheet) {
StringBuilder css_text;
for (unsigned i = 0; i < style_sheet.length(); ++i) {
CSSRule* rule = style_sheet.ItemInternal(i);
String item_text = rule->cssText();
if (!item_text.empty()) {
css_text.Append(item_text);
if (i < style_sheet.length() - 1) {
css_text.Append("\n\n");
}
}
}
// `css_text` is the text that has already been parsed from the <style> tag,
// so it does not retain escape sequences. The only time we would need to
// emit an escape sequence is if the </style> tag appears within `css_text`.
// Parsing <style> contents is described in
// https://html.spec.whatwg.org/multipage/parsing.html#rawtext-state.
// Note that when replacing the "style" text. HTML tags are case
// insensitive, but this is escaped, so it's not not actually an HTML end
// tag.
return blink::internal::ReplaceAllCaseInsensitive(
css_text.ToString(), "</style", [](const String& text) {
// \3C = '<'.
return WTF::StrCat({"\\3C/", text.Substring(2)});
});
}
void SerializeCSSFile(Document& document, const KURL& url) {
if (!url.IsValid() || !url.ProtocolIsInHTTPFamily()) {
return;
}
resource_serializer_->FetchAndAddResource(
document, url, mojom::blink::RequestContextType::STYLE,
// A missing CSS file will usually have a large impact on page
// appearance. Allow fetching from the cache or network to improve the
// chances of getting the resource.
mojom::blink::FetchCacheMode::kDefault);
}
// Attempts to serialize a stylesheet, if necessary. Does a couple things:
// 1. If `url` is valid and not a data URL, and we haven't already serialized
// this url, then serialize the stylesheet into a new resource. Note that this
// process is lossy, and may not perfectly reflect the intended style.
// 2. Even if `url` is invalid or a data URL, serialize the resources within
// `style_sheet`.
void SerializeCSSStyleSheet(CSSStyleSheet& style_sheet, const KURL& url) {
// If the URL is invalid or if it is a data URL this means that this CSS is
// defined inline, respectively in a <style> tag or in the data URL itself.
bool is_inline_css = !url.IsValid() || url.ProtocolIsData();
// If this CSS is not inline then it is identifiable by its URL. So just
// skip it if it has already been analyzed before.
if (!is_inline_css && !resource_serializer_->ShouldAddURL(url)) {
return;
}
TRACE_EVENT2("page-serialization",
"FrameSerializer::serializeCSSStyleSheet", "type", "CSS",
"url", url.ElidedString().Utf8());
const auto& charset = style_sheet.Contents()->Charset();
// If this CSS is inlined its definition was already serialized with the
// frame HTML code that was previously generated. No need to regenerate it
// here.
if (!is_inline_css) {
StringBuilder css_text;
// Adopted stylesheets may not have a defined charset, so use UTF-8 in
// that case.
css_text.Append("@charset \"");
css_text.Append(charset.IsValid()
? charset.GetName().GetString().DeprecatedLower()
: "utf-8");
css_text.Append("\";\n\n");
for (unsigned i = 0; i < style_sheet.length(); ++i) {
CSSRule* rule = style_sheet.ItemInternal(i);
String item_text = rule->cssText();
if (!item_text.empty()) {
css_text.Append(item_text);
if (i < style_sheet.length() - 1) {
css_text.Append("\n\n");
}
}
}
String text_string = css_text.ToString();
std::string text;
if (charset.IsValid()) {
WTF::TextEncoding text_encoding(charset);
text = text_encoding.Encode(text_string,
WTF::kCSSEncodedEntitiesForUnencodables);
} else {
text = WTF::UTF8Encoding().Encode(
text_string, WTF::kCSSEncodedEntitiesForUnencodables);
}
resource_serializer_->AddToResources(String("text/css"),
SharedBuffer::Create(text), url);
}
// Sub resources need to be serialized even if the CSS definition doesn't
// need to be.
SerializeCSSResources(style_sheet);
}
// Serializes resources referred to by `style_sheet`.
void SerializeCSSResources(CSSStyleSheet& style_sheet) {
for (unsigned i = 0; i < style_sheet.length(); ++i) {
SerializeCSSRuleResources(style_sheet.ItemInternal(i));
}
}
void SerializeCSSRuleResources(CSSRule* rule) {
DCHECK(rule->parentStyleSheet()->OwnerDocument());
Document& document = *rule->parentStyleSheet()->OwnerDocument();
switch (rule->GetType()) {
case CSSRule::kStyleRule:
RetrieveResourcesForProperties(
&To<CSSStyleRule>(rule)->GetStyleRule()->Properties(), document);
break;
case CSSRule::kImportRule: {
CSSImportRule* import_rule = To<CSSImportRule>(rule);
KURL sheet_base_url = rule->parentStyleSheet()->BaseURL();
DCHECK(sheet_base_url.IsValid());
KURL import_url = KURL(sheet_base_url, import_rule->href());
if (import_rule->styleSheet()) {
if (MHTMLImprovementsEnabled()) {
SerializeCSSResources(*import_rule->styleSheet());
SerializeCSSFile(document, import_url);
} else {
SerializeCSSStyleSheet(*import_rule->styleSheet(), import_url);
}
}
break;
}
// Rules inheriting CSSGroupingRule
case CSSRule::kNestedDeclarationsRule:
case CSSRule::kMediaRule:
case CSSRule::kSupportsRule:
case CSSRule::kContainerRule:
case CSSRule::kLayerBlockRule:
case CSSRule::kScopeRule:
case CSSRule::kStartingStyleRule: {
CSSRuleList* rule_list = rule->cssRules();
for (unsigned i = 0; i < rule_list->length(); ++i) {
SerializeCSSRuleResources(rule_list->item(i));
}
break;
}
case CSSRule::kFontFaceRule:
RetrieveResourcesForProperties(
&To<CSSFontFaceRule>(rule)->StyleRule()->Properties(), document);
break;
case CSSRule::kCounterStyleRule:
// TODO(crbug.com/1176323): Handle image symbols in @counter-style rules
// when we implement it.
break;
case CSSRule::kMarginRule:
case CSSRule::kPageRule:
// TODO(crbug.com/40341678): Both page and margin rules may contain
// external resources (e.g. via background-image). FrameSerializer is at
// the mercy of whatever resource loading has already been triggered (by
// regular lifecycle updates). See crbug.com/364331857 . As such, unless
// the user has actually tried to print the page, resources inside @page
// rules won't have been loaded. Rather than introducing flaky behavior
// (sometimes @page resources are loaded, sometimes not), let's wait for
// that bug to be fixed.
break;
// Rules in which no external resources can be referenced
case CSSRule::kCharsetRule:
case CSSRule::kFontPaletteValuesRule:
case CSSRule::kFontFeatureRule:
case CSSRule::kFontFeatureValuesRule:
case CSSRule::kPropertyRule:
case CSSRule::kKeyframesRule:
case CSSRule::kKeyframeRule:
case CSSRule::kNamespaceRule:
case CSSRule::kLayerStatementRule:
case CSSRule::kViewTransitionRule:
case CSSRule::kPositionTryRule:
case CSSRule::kFunctionDeclarationsRule:
case CSSRule::kFunctionRule:
break;
}
}
void RetrieveResourcesForProperties(
const CSSPropertyValueSet* style_declaration,
Document& document) {
if (!style_declaration) {
return;
}
// The background-image and list-style-image (for ul or ol) are the CSS
// properties that make use of images. We iterate to make sure we include
// any other image properties there might be.
for (const CSSPropertyValue& property : style_declaration->Properties()) {
RetrieveResourcesForCSSValue(property.Value(), document);
}
}
void RetrieveResourcesForCSSValue(const CSSValue& css_value,
Document& document) {
if (const auto* image_value = DynamicTo<CSSImageValue>(css_value)) {
if (image_value->IsCachePending()) {
return;
}
StyleImage* style_image = image_value->CachedImage();
if (!style_image || !style_image->IsImageResource()) {
return;
}
resource_serializer_->AddImageToResources(
style_image->CachedImage(), style_image->CachedImage()->Url());
} else if (const auto* font_face_src_value =
DynamicTo<CSSFontFaceSrcValue>(css_value)) {
if (font_face_src_value->IsLocal()) {
return;
}
resource_serializer_->AddFontToResources(
document,
font_face_src_value->Fetch(document.GetExecutionContext(), nullptr));
} else if (const auto* css_value_list =
DynamicTo<CSSValueList>(css_value)) {
for (unsigned i = 0; i < css_value_list->length(); i++) {
RetrieveResourcesForCSSValue(css_value_list->Item(i), document);
}
}
}
MultiResourcePacker* resource_serializer_;
WebFrameSerializer::MHTMLPartsGenerationDelegate* web_delegate_;
Document* document_;
mutable HeapHashSet<WeakMember<const Element>> shadow_template_elements_;
mutable bool popup_overlays_skipped_ = false;
// Elements with links rewritten via appendAttribute method.
HeapHashSet<Member<const Element>> elements_with_rewritten_links_;
// Adopted stylesheets can be reused. This stores the set of stylesheets
// already serialized as resources, along with their URL.
HeapHashMap<Member<blink::CSSStyleSheet>, KURL> stylesheet_pseudo_urls_;
// Style elements whose contents will be serialized just before inserting
// </style>.
HeapHashSet<Member<const HTMLStyleElement>>
style_elements_to_replace_contents_;
};
} // namespace
// TODO(tiger): Right now there is no support for rewriting URLs inside CSS
// documents which leads to bugs like <https://crbug.com/251898>. Not being
// able to rewrite URLs inside CSS documents means that resources imported from
// url(...) statements in CSS might not work when rewriting links for the
// "Webpage, Complete" method of saving a page. It will take some work but it
// needs to be done if we want to continue to support non-MHTML saved pages.
// static
void FrameSerializer::SerializeFrame(
WebFrameSerializer::MHTMLPartsGenerationDelegate& web_delegate,
LocalFrame& frame,
base::OnceCallback<void(Deque<SerializedResource>)> done_callback) {
TRACE_EVENT0("page-serialization", "FrameSerializer::serializeFrame");
DCHECK(frame.GetDocument());
Document& document = *frame.GetDocument();
KURL url = document.Url();
auto* resource_serializer =
MakeGarbageCollected<MultiResourcePacker>(&web_delegate);
auto callback = std::move(done_callback);
// If frame is an image document, add the image and don't continue
if (auto* image_document = DynamicTo<ImageDocument>(document)) {
resource_serializer->AddImageToResources(image_document->CachedImage(),
url);
resource_serializer->Finish(std::move(callback));
return;
}
{
TRACE_EVENT0("page-serialization", "FrameSerializer::serializeFrame HTML");
SerializerMarkupAccumulator accumulator(resource_serializer, &web_delegate,
document);
String text =
accumulator.SerializeNodes<EditingStrategy>(document, kIncludeNode);
std::string frame_html =
document.Encoding().Encode(text, WTF::kEntitiesForUnencodables);
resource_serializer->AddMainResource(document.SuggestedMIMEType(),
SharedBuffer::Create(frame_html), url);
resource_serializer->Finish(std::move(callback));
}
}
// Returns MOTW (Mark of the Web) declaration before html tag which is in
// HTML comment, e.g. "<!-- saved from url=(%04d)%s -->"
// See http://msdn2.microsoft.com/en-us/library/ms537628(VS.85).aspx.
// static
String FrameSerializer::MarkOfTheWebDeclaration(const KURL& url) {
StringBuilder builder;
bool emits_minus = false;
for (const char ch : url.GetString().Ascii()) {
if (ch == '-' && emits_minus) {
builder.Append("%2D");
emits_minus = false;
continue;
}
emits_minus = ch == '-';
builder.Append(ch);
}
std::string escaped_url = builder.ToString().Ascii();
return String::Format("saved from url=(%04d)%s",
static_cast<int>(escaped_url.length()),
escaped_url.c_str());
}
// static
String FrameSerializer::GetContentID(Frame* frame) {
DCHECK(frame);
return WTF::StrCat(
{"<frame-", frame->GetFrameIdForTracing(), "@mhtml.blink>"});
}
} // namespace blink
|