Index: Source/core/dom/ScriptLoader.h |
diff --git a/Source/core/dom/ScriptLoader.h b/Source/core/dom/ScriptLoader.h |
index 7c2ce1b03107675ca6d4abc01b4f1f041438ad5d..4667e056714ad3c976e71b10203f8499ecc7354d 100644 |
--- a/Source/core/dom/ScriptLoader.h |
+++ b/Source/core/dom/ScriptLoader.h |
@@ -53,7 +53,9 @@ public: |
String scriptCharset() const { return m_characterEncoding; } |
String scriptContent() const; |
- void executeScript(const ScriptSourceCode&, double* compilationFinishTime = 0); |
+ // Returns false if and only if there was a fatal execution error, namely |
Mike West
2015/03/23 19:49:43
Hrm. Perhaps "if execution was blocked"? What do w
jww
2015/03/23 21:56:52
Done. See responses in ScriptLoader.cpp for more d
|
+ // an integrity check failure. |
+ bool executeScript(const ScriptSourceCode&, double* compilationFinishTime = 0); |
virtual void execute(); |
// XML parser calls these |