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

Side by Side Diff: sky/engine/core/html/parser/HTMLParserOptions.cpp

Issue 664573004: Live the dream (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: DEPS Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2013 Google, Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 28
29 #include "bindings/core/v8/ScriptController.h" 29 #include "bindings/core/v8/ScriptController.h"
30 #include "core/dom/Document.h" 30 #include "core/dom/Document.h"
31 #include "core/frame/LocalFrame.h" 31 #include "core/frame/LocalFrame.h"
32 #include "core/frame/Settings.h" 32 #include "core/frame/Settings.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 HTMLParserOptions::HTMLParserOptions(Document* document) 36 HTMLParserOptions::HTMLParserOptions(Document* document)
37 { 37 {
38 // We force the main-thread parser for two cases: 38 useThreading = document && !document->url().isAboutBlankURL();
39 // - about:blank and javascript (which uses about:blank) for compatibility
40 // with historical synchronous loading/parsing behavior.
41 // - instances where the Document has no Frame (this happens sometimes for
42 // HTML imports, and possibly other cases).
43 // FIXME: We want to use the threaded parser for XHRs (where there is no
44 // frame) so the second case should go away eventually.
45 // FIXME: Gecko does not load javascript: urls synchronously, why do we?
46 // See tests/loader/iframe-sync-loads.html
47 useThreading = document && document->frame() && !document->url().isAboutBlan kURL();
48 } 39 }
49 40
50 } 41 }
OLDNEW
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.cpp ('k') | sky/engine/core/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698