Changeset 18843 in webkit
- Timestamp:
- Jan 14, 2007, 2:04:21 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r18837 r18843 1 2007-01-14 Adam Roben <aroben@apple.com> 2 3 Reviewed by Maciej. 4 5 * editing/deleting/4845371.html: Removed bogus "Javascript" type. 6 * editing/selection/4397952.html: Ditto. 7 * fast/html/script-allowed-types-languages-expected.txt: Added. 8 * fast/html/script-allowed-types-languages.html: Added. Tests 9 type/language whitelisting. 10 1 11 2007-01-14 Mark Rowe <mrowe@apple.com> 2 12 -
trunk/LayoutTests/editing/deleting/4845371.html
r17936 r18843 2 2 <div id="div" contenteditable="true"><table><tr><td>foo <a href="http://www.google.com/">bar</a></td><td>baz</td></tr></table></div> 3 3 4 <script type="Javascript"src="../editing.js"></script>4 <script src="../editing.js"></script> 5 5 <script> 6 6 runEditingTest(); -
trunk/LayoutTests/editing/selection/4397952.html
r17907 r18843 4 4 </div> 5 5 6 <script type="Javascript"src="../editing.js"></script>6 <script src="../editing.js"></script> 7 7 <script> 8 8 runEditingTest(); -
trunk/WebCore/ChangeLog
r18840 r18843 1 2007-01-14 Adam Roben <aroben@apple.com> 2 3 Reviewed by Maciej. 4 5 Make sure our whitelisting of the type and language attributes of the 6 <script> element is enforced in all HTMLTokenizer/HTMLScriptElement 7 code paths. 8 9 All layout tests pass. 10 11 * html/HTMLScriptElement.cpp: 12 (WebCore::HTMLScriptElement::shouldExecuteAsJavaScript): New method to 13 determine whether the script should be executed, given its type and 14 language attributes. 15 (WebCore::HTMLScriptElement::evaluateScript): Check type/language 16 before executing. 17 * html/HTMLScriptElement.h: Added new declarations. 18 * html/HTMLTokenizer.cpp: 19 (WebCore::HTMLTokenizer::begin): Made scriptSrc a String. 20 (WebCore::HTMLTokenizer::scriptHandler): Check 21 shouldExecuteAsJavaScript before executing. 22 (WebCore::HTMLTokenizer::notifyFinished): Ditto. 23 (WebCore::HTMLTokenizer::parseTag): Moved type/language checking from 24 here to HTMLScriptElement::shouldExecuteAsJavaScript. 25 * html/HTMLTokenizer.h: Made scriptSrc a String, and removed the 26 javascript member. 27 1 28 2007-01-14 David Hyatt <hyatt@apple.com> 2 29 -
trunk/WebCore/html/HTMLScriptElement.cpp
r18428 r18843 5 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 6 * (C) 2001 Dirk Mueller (mueller@kde.org) 7 * Copyright (C) 2003 Apple Computer,Inc.7 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. 8 8 * 9 9 * This library is free software; you can redistribute it and/or … … 160 160 } 161 161 162 bool HTMLScriptElement::shouldExecuteAsJavaScript() 163 { 164 /* 165 Mozilla 1.8 and WinIE 7 both accept text/javascript and text/ecmascript. 166 Mozilla 1.8 accepts application/javascript, application/ecmascript, and application/x-javascript, but WinIE 7 doesn't. 167 WinIE 7 accepts text/javascript1.1 - text/javascript1.3, text/jscript, and text/livescript, but Mozilla 1.8 doesn't. 168 Mozilla 1.8 allows leading and trailing whitespace, but WinIE 7 doesn't. 169 Mozilla 1.8 and WinIE 7 both accept the empty string, but neither accept a whitespace-only string. 170 We want to accept all the values that either of these browsers accept, but not other values. 171 */ 172 static const AtomicString validTypes[] = { 173 "text/javascript", 174 "text/ecmascript", 175 "application/javascript", 176 "application/ecmascript", 177 "application/x-javascript", 178 "text/javascript1.1", 179 "text/javascript1.2", 180 "text/javascript1.3", 181 "text/jscript", 182 "text/livescript", 183 }; 184 static const unsigned validTypesCount = sizeof(validTypes) / sizeof(validTypes[0]); 185 186 /* 187 Mozilla 1.8 accepts javascript1.0 - javascript1.7, but WinIE 7 accepts only javascript1.1 - javascript1.3. 188 Mozilla 1.8 and WinIE 7 189 WinIE 7 accepts ecmascript and jscript, but Mozilla 1.8 doesn't. 190 Neither Mozilla 1.8 nor WinIE 7 accept leading or trailing whitespace. 191 We want to accept all the values that either of these browsers accept, but not other values. 192 */ 193 static const AtomicString validLanguages[] = { 194 "javascript", 195 "javascript1.0", 196 "javascript1.1", 197 "javascript1.2", 198 "javascript1.3", 199 "javascript1.4", 200 "javascript1.5", 201 "javascript1.6", 202 "javascript1.7", 203 "livescript", 204 "ecmascript", 205 "jscript" 206 }; 207 static const unsigned validLanguagesCount = sizeof(validLanguages) / sizeof(validLanguages[0]); 208 209 const AtomicString& type = getAttribute(typeAttr); 210 if (!type.isEmpty()) { 211 String lowerType = type.domString().stripWhiteSpace().lower(); 212 for (unsigned i = 0; i < validTypesCount; ++i) 213 if (lowerType == validTypes[i]) 214 return true; 215 216 return false; 217 } 218 219 const AtomicString& language = getAttribute(languageAttr); 220 if (!language.isEmpty()) { 221 String lowerLanguage = language.domString().lower(); 222 for (unsigned i = 0; i < validLanguagesCount; ++i) 223 if (lowerLanguage == validLanguages[i]) 224 return true; 225 226 return false; 227 } 228 229 // No type or language is specified, so we assume the script to be JavaScript 230 return true; 231 } 232 162 233 void HTMLScriptElement::evaluateScript(const String& URL, const String& script) 163 234 { 164 235 if (m_evaluated) 236 return; 237 238 if (!shouldExecuteAsJavaScript()) 165 239 return; 166 240 -
trunk/WebCore/html/HTMLScriptElement.h
r15269 r18843 4 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 5 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * Copyright (C) 2003 Apple Computer,Inc.6 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. 7 7 * 8 8 * This library is free software; you can redistribute it and/or … … 54 54 virtual void closeRenderer(); 55 55 56 bool shouldExecuteAsJavaScript(); 56 57 void evaluateScript(const String &URL, const String &script); 57 58 -
trunk/WebCore/html/HTMLTokenizer.cpp
r18417 r18843 8 8 (C) 1999 Antti Koivisto (koivisto@kde.org) 9 9 (C) 2001 Dirk Mueller (mueller@kde.org) 10 Copyright (C) 2004, 2005, 2006 Apple Computer,Inc.10 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. 11 11 Copyright (C) 2005, 2006 Alexey Proskuryakov (ap@nypop.com) 12 12 … … 37 37 #include "FrameLoader.h" 38 38 #include "FrameView.h" 39 #include "HTMLElement.h" 40 #include "HTMLNames.h" 41 #include "HTMLParser.h" 42 #include "HTMLScriptElement.h" 39 43 #include "HTMLViewSourceDocument.h" 40 #include "HTMLElement.h"41 44 #include "SystemTime.h" 42 45 #include "csshelper.h" 43 #include "HTMLNames.h"44 #include "HTMLParser.h"45 46 #include "kjs_proxy.h" 46 47 … … 227 228 searchCount = 0; 228 229 m_state.setEntityState(NoEntity); 229 scriptSrc = DeprecatedString::null;230 scriptSrc = String(); 230 231 pendingSrc.clear(); 231 232 currentPrependingSrc = 0; … … 392 393 } else 393 394 scriptNode = 0; 394 scriptSrc =DeprecatedString::null;395 scriptSrc = String(); 395 396 } else { 396 397 #ifdef TOKEN_DEBUG … … 399 400 kdDebug( 6036 ) << "---END SCRIPT---" << endl; 400 401 #endif 402 // Parse scriptCode containing <script> info 403 doScriptExec = static_cast<HTMLScriptElement*>(scriptNode.get())->shouldExecuteAsJavaScript(); 401 404 scriptNode = 0; 402 // Parse scriptCode containing <script> info403 doScriptExec = true;404 405 } 405 406 } … … 442 443 if (!pendingScripts.isEmpty()) 443 444 state.setLoadingExtScript(true); 444 } 445 else if (!m_fragment && doScriptExec && javascript ) { 445 } else if (!m_fragment && doScriptExec) { 446 446 if (!m_executingScript) 447 447 pendingSrc.prepend(src); … … 1148 1148 if (currToken.beginTag && currToken.tagName == scriptTag) { 1149 1149 Attribute* a = 0; 1150 bool foundTypeAttribute = false; 1151 scriptSrc = DeprecatedString::null; 1150 scriptSrc = String(); 1152 1151 scriptSrcCharset = String(); 1153 1152 if (currToken.attrs && !m_fragment && m_doc->frame() && m_doc->frame()->settings()->isJavaScriptEnabled()) { 1154 1153 if ((a = currToken.attrs->getAttributeItem(srcAttr))) 1155 scriptSrc = m_doc->completeURL(parseURL(a->value()) .deprecatedString());1154 scriptSrc = m_doc->completeURL(parseURL(a->value())); 1156 1155 if ((a = currToken.attrs->getAttributeItem(charsetAttr))) 1157 1156 scriptSrcCharset = a->value().domString().stripWhiteSpace(); 1158 1157 if (scriptSrcCharset.isEmpty()) 1159 1158 scriptSrcCharset = m_doc->frame()->loader()->encoding(); 1160 /* Check type before language, since language is deprecated */1161 if ((a = currToken.attrs->getAttributeItem(typeAttr)) != 0 && !a->value().isEmpty())1162 foundTypeAttribute = true;1163 else1164 a = currToken.attrs->getAttributeItem(languageAttr);1165 }1166 javascript = true;1167 1168 if( foundTypeAttribute ) {1169 /*1170 Mozilla 1.5 accepts application/x-javascript, and some web references claim it is the only1171 correct variation, but WinIE 6 doesn't accept it.1172 Neither Mozilla 1.5 nor WinIE 6 accept application/javascript, application/ecmascript, or1173 application/x-ecmascript.1174 Mozilla 1.5 doesn't accept the text/javascript1.x formats, but WinIE 6 does.1175 Mozilla 1.5 doesn't accept text/jscript, text/ecmascript, and text/livescript, but WinIE 6 does.1176 Mozilla 1.5 allows leading and trailing whitespace, but WinIE 6 doesn't.1177 Mozilla 1.5 and WinIE 6 both accept the empty string, but neither accept a whitespace-only string.1178 We want to accept all the values that either of these browsers accept, but not other values.1179 */1180 DeprecatedString type = a->value().domString().stripWhiteSpace().lower().deprecatedString();1181 if( type.compare("application/x-javascript") != 0 &&1182 type.compare("text/javascript") != 0 &&1183 type.compare("text/javascript1.0") != 0 &&1184 type.compare("text/javascript1.1") != 0 &&1185 type.compare("text/javascript1.2") != 0 &&1186 type.compare("text/javascript1.3") != 0 &&1187 type.compare("text/javascript1.4") != 0 &&1188 type.compare("text/javascript1.5") != 0 &&1189 type.compare("text/jscript") != 0 &&1190 type.compare("text/ecmascript") != 0 &&1191 type.compare("text/livescript") )1192 javascript = false;1193 } else if( a ) {1194 /*1195 Mozilla 1.5 doesn't accept jscript or ecmascript, but WinIE 6 does.1196 Mozilla 1.5 accepts javascript1.0, javascript1.4, and javascript1.5, but WinIE 6 accepts only 1.1 - 1.3.1197 Neither Mozilla 1.5 nor WinIE 6 accept leading or trailing whitespace.1198 We want to accept all the values that either of these browsers accept, but not other values.1199 */1200 String lang = a->value().domString().lower();1201 if( lang != "" &&1202 lang != "javascript" &&1203 lang != "javascript1.0" &&1204 lang != "javascript1.1" &&1205 lang != "javascript1.2" &&1206 lang != "javascript1.3" &&1207 lang != "javascript1.4" &&1208 lang != "javascript1.5" &&1209 lang != "ecmascript" &&1210 lang != "livescript" &&1211 lang != "jscript")1212 javascript = false;1213 1159 } 1214 1160 } … … 1701 1647 bool errorOccurred = cs->errorOccurred(); 1702 1648 cs->deref(this); 1703 RefPtr<Node> n = scriptNode; 1704 scriptNode = 0; 1649 RefPtr<Node> n = scriptNode.release(); 1705 1650 1706 1651 #ifdef INSTRUMENT_LAYOUT_SCHEDULING … … 1712 1657 EventTargetNodeCast(n.get())->dispatchHTMLEvent(errorEvent, true, false); 1713 1658 else { 1714 m_state = scriptExecution(scriptSource.deprecatedString(), m_state, cachedScriptUrl); 1659 if (static_cast<HTMLScriptElement*>(n.get())->shouldExecuteAsJavaScript()) 1660 m_state = scriptExecution(scriptSource.deprecatedString(), m_state, cachedScriptUrl); 1715 1661 EventTargetNodeCast(n.get())->dispatchHTMLEvent(loadEvent, false, false); 1716 1662 } -
trunk/WebCore/html/HTMLTokenizer.h
r18669 r18843 297 297 bool noMoreData; 298 298 // URL to get source code of script from 299 DeprecatedString scriptSrc;299 String scriptSrc; 300 300 String scriptSrcCharset; 301 bool javascript;302 301 // the HTML code we will parse after the external script we are waiting for has loaded 303 302 SegmentedString pendingSrc;
Note:
See TracChangeset
for help on using the changeset viewer.