<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[190281] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/190281">190281</a></dd>
<dt>Author</dt> <dd>cdumez@apple.com</dd>
<dt>Date</dt> <dd>2015-09-28 11:26:31 -0700 (Mon, 28 Sep 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Drop support for legacy EventException
https://bugs.webkit.org/show_bug.cgi?id=149597
&lt;rdar://problem/22879795&gt;

Reviewed by Sam Weinig.

LayoutTests/imported/w3c:

Rebaseline W3C DOM test now that a new check is passing.

* web-platform-tests/dom/historical-expected.txt:

Source/WebCore:

Drop support for legacy EventException. Both Firefox and Chrome do not
support it, and our implementation no longer throws such exceptions.

No new tests, already covered by existing test.

* CMakeLists.txt:
* DerivedSources.cpp:
* DerivedSources.make:
* Modules/indexeddb/legacy/LegacyRequest.cpp:
* Modules/indexeddb/legacy/LegacyTransaction.cpp:
* Modules/websockets/WebSocket.cpp:
* WebCore.vcxproj/WebCore.vcxproj:
* WebCore.vcxproj/WebCore.vcxproj.filters:
* WebCore.xcodeproj/project.pbxproj:
* bindings/gobject/WebKitDOMPrivate.cpp:
* bindings/js/JSExceptionBase.cpp:
(WebCore::toExceptionBase): Deleted.
* dom/DOMAllInOne.cpp:
* dom/DOMExceptions.in:
* dom/EventException.cpp: Removed.
* dom/EventException.h:
(WebCore::EventException::EventException): Deleted.
* dom/EventException.idl:
* dom/EventListenerMap.cpp:
* dom/EventTarget.cpp:
* dom/MessagePort.cpp:
* dom/Node.cpp:
* loader/appcache/DOMApplicationCache.cpp:
* page/DOMWindow.cpp:
* page/EventSource.cpp:
* page/PerformanceUserTiming.h:
* workers/AbstractWorker.cpp:
* workers/Worker.cpp:
* workers/WorkerGlobalScope.cpp:
* xml/XMLHttpRequest.cpp:
* xml/XMLHttpRequestUpload.cpp:

LayoutTests:

Update / rebaseline several tests now that we no longer expose
EventException on the global Window object.

* fast/dom/Window/resources/window-properties.js:
* fast/dom/Window/window-lookup-precedence-expected.txt:
* js/dom/global-constructors-attributes-expected.txt:
* platform/efl/js/dom/global-constructors-attributes-expected.txt:
* platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt:
* platform/gtk/js/dom/global-constructors-attributes-expected.txt:
* platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
* platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
* platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt:
* platform/mac/js/dom/global-constructors-attributes-expected.txt:
* platform/win/js/dom/global-constructors-attributes-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsfastdomWindowresourceswindowpropertiesjs">trunk/LayoutTests/fast/dom/Window/resources/window-properties.js</a></li>
<li><a href="#trunkLayoutTestsfastdomWindowwindowlookupprecedenceexpectedtxt">trunk/LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt</a></li>
<li><a href="#trunkLayoutTestsimportedw3cChangeLog">trunk/LayoutTests/imported/w3c/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsimportedw3cwebplatformtestsdomhistoricalexpectedtxt">trunk/LayoutTests/imported/w3c/web-platform-tests/dom/historical-expected.txt</a></li>
<li><a href="#trunkLayoutTestsjsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformefljsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastdomWindowwindowlookupprecedenceexpectedtxt">trunk/LayoutTests/platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkjsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastdomWindowwindowlookupprecedenceexpectedtxt">trunk/LayoutTests/platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacjsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacmavericksjsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacyosemitejsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinjsdomglobalconstructorsattributesexpectedtxt">trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt</a></li>
<li><a href="#trunkSourceWebCoreCMakeListstxt">trunk/Source/WebCore/CMakeLists.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreDerivedSourcescpp">trunk/Source/WebCore/DerivedSources.cpp</a></li>
<li><a href="#trunkSourceWebCoreDerivedSourcesmake">trunk/Source/WebCore/DerivedSources.make</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddblegacyLegacyRequestcpp">trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyRequest.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddblegacyLegacyTransactioncpp">trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyTransaction.cpp</a></li>
<li><a href="#trunkSourceWebCoreModuleswebsocketsWebSocketcpp">trunk/Source/WebCore/Modules/websockets/WebSocket.cpp</a></li>
<li><a href="#trunkSourceWebCoreWebCorevcxprojWebCorevcxproj">trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj</a></li>
<li><a href="#trunkSourceWebCoreWebCorevcxprojWebCorevcxprojfilters">trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWebCorebindingsgobjectWebKitDOMPrivatecpp">trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp</a></li>
<li><a href="#trunkSourceWebCorebindingsjsJSExceptionBasecpp">trunk/Source/WebCore/bindings/js/JSExceptionBase.cpp</a></li>
<li><a href="#trunkSourceWebCoredomDOMAllInOnecpp">trunk/Source/WebCore/dom/DOMAllInOne.cpp</a></li>
<li><a href="#trunkSourceWebCoredomDOMExceptionsin">trunk/Source/WebCore/dom/DOMExceptions.in</a></li>
<li><a href="#trunkSourceWebCoredomEventExceptionh">trunk/Source/WebCore/dom/EventException.h</a></li>
<li><a href="#trunkSourceWebCoredomEventExceptionidl">trunk/Source/WebCore/dom/EventException.idl</a></li>
<li><a href="#trunkSourceWebCoredomEventListenerMapcpp">trunk/Source/WebCore/dom/EventListenerMap.cpp</a></li>
<li><a href="#trunkSourceWebCoredomEventTargetcpp">trunk/Source/WebCore/dom/EventTarget.cpp</a></li>
<li><a href="#trunkSourceWebCoredomMessagePortcpp">trunk/Source/WebCore/dom/MessagePort.cpp</a></li>
<li><a href="#trunkSourceWebCoredomNodecpp">trunk/Source/WebCore/dom/Node.cpp</a></li>
<li><a href="#trunkSourceWebCoreloaderappcacheDOMApplicationCachecpp">trunk/Source/WebCore/loader/appcache/DOMApplicationCache.cpp</a></li>
<li><a href="#trunkSourceWebCorepageDOMWindowcpp">trunk/Source/WebCore/page/DOMWindow.cpp</a></li>
<li><a href="#trunkSourceWebCorepageEventSourcecpp">trunk/Source/WebCore/page/EventSource.cpp</a></li>
<li><a href="#trunkSourceWebCorepagePerformanceUserTimingh">trunk/Source/WebCore/page/PerformanceUserTiming.h</a></li>
<li><a href="#trunkSourceWebCoreworkersAbstractWorkercpp">trunk/Source/WebCore/workers/AbstractWorker.cpp</a></li>
<li><a href="#trunkSourceWebCoreworkersWorkercpp">trunk/Source/WebCore/workers/Worker.cpp</a></li>
<li><a href="#trunkSourceWebCoreworkersWorkerGlobalScopecpp">trunk/Source/WebCore/workers/WorkerGlobalScope.cpp</a></li>
<li><a href="#trunkSourceWebCorexmlXMLHttpRequestcpp">trunk/Source/WebCore/xml/XMLHttpRequest.cpp</a></li>
<li><a href="#trunkSourceWebCorexmlXMLHttpRequestUploadcpp">trunk/Source/WebCore/xml/XMLHttpRequestUpload.cpp</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoredomEventExceptioncpp">trunk/Source/WebCore/dom/EventException.cpp</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/ChangeLog        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1,5 +1,28 @@
</span><span class="cx"> 2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Drop support for legacy EventException
+        https://bugs.webkit.org/show_bug.cgi?id=149597
+        &lt;rdar://problem/22879795&gt;
+
+        Reviewed by Sam Weinig.
+
+        Update / rebaseline several tests now that we no longer expose
+        EventException on the global Window object.
+
+        * fast/dom/Window/resources/window-properties.js:
+        * fast/dom/Window/window-lookup-precedence-expected.txt:
+        * js/dom/global-constructors-attributes-expected.txt:
+        * platform/efl/js/dom/global-constructors-attributes-expected.txt:
+        * platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt:
+        * platform/gtk/js/dom/global-constructors-attributes-expected.txt:
+        * platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
+        * platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
+        * platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt:
+        * platform/mac/js/dom/global-constructors-attributes-expected.txt:
+        * platform/win/js/dom/global-constructors-attributes-expected.txt:
+
+2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
+
</ins><span class="cx">         Object.getOwnPropertyNames() does not return named properties
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=149562
</span><span class="cx">         &lt;rdar://problem/22879779&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastdomWindowresourceswindowpropertiesjs"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/dom/Window/resources/window-properties.js (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/dom/Window/resources/window-properties.js        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/fast/dom/Window/resources/window-properties.js        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -57,7 +57,6 @@
</span><span class="cx">     [&quot;DocumentType&quot;, &quot;object&quot;],
</span><span class="cx">     [&quot;Element&quot;, &quot;object&quot;],
</span><span class="cx">     [&quot;Event&quot;, &quot;object&quot;],
</span><del>-    [&quot;EventException&quot;, &quot;object&quot;],
</del><span class="cx">     [&quot;HTMLAnchorElement&quot;, &quot;object&quot;],
</span><span class="cx">     [&quot;HTMLAppletElement&quot;, &quot;object&quot;],
</span><span class="cx">     [&quot;HTMLAreaElement&quot;, &quot;object&quot;],
</span></span></pre></div>
<a id="trunkLayoutTestsfastdomWindowwindowlookupprecedenceexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -116,8 +116,6 @@
</span><span class="cx"> PASS win['Element'] == '[object ElementConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><del>-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
</del><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAppletElement'] == '[object HTMLAppletElementConstructor]' is true
</span></span></pre></div>
<a id="trunkLayoutTestsimportedw3cChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/ChangeLog (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/ChangeLog        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/imported/w3c/ChangeLog        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1,5 +1,17 @@
</span><span class="cx"> 2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Drop support for legacy EventException
+        https://bugs.webkit.org/show_bug.cgi?id=149597
+        &lt;rdar://problem/22879795&gt;
+
+        Reviewed by Sam Weinig.
+
+        Rebaseline W3C DOM test now that a new check is passing.
+
+        * web-platform-tests/dom/historical-expected.txt:
+
+2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
+
</ins><span class="cx">         Object.getOwnPropertyNames() does not return named properties
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=149562
</span><span class="cx">         &lt;rdar://problem/22879779&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsimportedw3cwebplatformtestsdomhistoricalexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/dom/historical-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/web-platform-tests/dom/historical-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/dom/historical-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -10,7 +10,7 @@
</span><span class="cx"> PASS Historical DOM features must be removed: DOMUserData 
</span><span class="cx"> PASS Historical DOM features must be removed: Entity 
</span><span class="cx"> PASS Historical DOM features must be removed: EntityReference 
</span><del>-FAIL Historical DOM features must be removed: EventException assert_equals: expected (undefined) undefined but got (object) object &quot;[object EventExceptionConstructor]&quot;
</del><ins>+PASS Historical DOM features must be removed: EventException 
</ins><span class="cx"> PASS Historical DOM features must be removed: NameList 
</span><span class="cx"> PASS Historical DOM features must be removed: Notation 
</span><span class="cx"> PASS Historical DOM features must be removed: TypeInfo 
</span></span></pre></div>
<a id="trunkLayoutTestsjsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -323,11 +323,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformefljsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -323,11 +323,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastdomWindowwindowlookupprecedenceexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -116,8 +116,6 @@
</span><span class="cx"> PASS win['Element'] == '[object ElementConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><del>-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
</del><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAppletElement'] == '[object HTMLAppletElementConstructor]' is true
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkjsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -328,11 +328,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastdomWindowwindowlookupprecedenceexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -116,8 +116,6 @@
</span><span class="cx"> PASS win['Element'] == '[object ElementConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><span class="cx"> PASS win['Event'] == '[object EventConstructor]' is true
</span><del>-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
-PASS win['EventException'] == '[object EventExceptionConstructor]' is true
</del><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAnchorElement'] == '[object HTMLAnchorElementConstructor]' is true
</span><span class="cx"> PASS win['HTMLAppletElement'] == '[object HTMLAppletElementConstructor]' is true
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacjsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -318,11 +318,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacmavericksjsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -318,11 +318,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacyosemitejsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -318,11 +318,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkLayoutTestsplatformwinjsdomglobalconstructorsattributesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/LayoutTests/platform/win/js/dom/global-constructors-attributes-expected.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -248,11 +248,6 @@
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').hasOwnProperty('set') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').enumerable is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'Event').configurable is true
</span><del>-PASS Object.getOwnPropertyDescriptor(global, 'EventException').value is EventException
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'EventException').configurable is true
</del><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').value is EventSource
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('get') is false
</span><span class="cx"> PASS Object.getOwnPropertyDescriptor(global, 'EventSource').hasOwnProperty('set') is false
</span></span></pre></div>
<a id="trunkSourceWebCoreCMakeListstxt"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/CMakeLists.txt (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/CMakeLists.txt        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/CMakeLists.txt        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -393,7 +393,6 @@
</span><span class="cx">     dom/Element.idl
</span><span class="cx">     dom/ErrorEvent.idl
</span><span class="cx">     dom/Event.idl
</span><del>-    dom/EventException.idl
</del><span class="cx">     dom/EventTarget.idl
</span><span class="cx">     dom/FocusEvent.idl
</span><span class="cx">     dom/GlobalEventHandlers.idl
</span><span class="lines">@@ -1431,7 +1430,6 @@
</span><span class="cx">     dom/Event.cpp
</span><span class="cx">     dom/EventContext.cpp
</span><span class="cx">     dom/EventDispatcher.cpp
</span><del>-    dom/EventException.cpp
</del><span class="cx">     dom/EventListenerMap.cpp
</span><span class="cx">     dom/EventNames.cpp
</span><span class="cx">     dom/EventTarget.cpp
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/ChangeLog        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1,5 +1,50 @@
</span><span class="cx"> 2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Drop support for legacy EventException
+        https://bugs.webkit.org/show_bug.cgi?id=149597
+        &lt;rdar://problem/22879795&gt;
+
+        Reviewed by Sam Weinig.
+
+        Drop support for legacy EventException. Both Firefox and Chrome do not
+        support it, and our implementation no longer throws such exceptions.
+
+        No new tests, already covered by existing test.
+
+        * CMakeLists.txt:
+        * DerivedSources.cpp:
+        * DerivedSources.make:
+        * Modules/indexeddb/legacy/LegacyRequest.cpp:
+        * Modules/indexeddb/legacy/LegacyTransaction.cpp:
+        * Modules/websockets/WebSocket.cpp:
+        * WebCore.vcxproj/WebCore.vcxproj:
+        * WebCore.vcxproj/WebCore.vcxproj.filters:
+        * WebCore.xcodeproj/project.pbxproj:
+        * bindings/gobject/WebKitDOMPrivate.cpp:
+        * bindings/js/JSExceptionBase.cpp:
+        (WebCore::toExceptionBase): Deleted.
+        * dom/DOMAllInOne.cpp:
+        * dom/DOMExceptions.in:
+        * dom/EventException.cpp: Removed.
+        * dom/EventException.h:
+        (WebCore::EventException::EventException): Deleted.
+        * dom/EventException.idl:
+        * dom/EventListenerMap.cpp:
+        * dom/EventTarget.cpp:
+        * dom/MessagePort.cpp:
+        * dom/Node.cpp:
+        * loader/appcache/DOMApplicationCache.cpp:
+        * page/DOMWindow.cpp:
+        * page/EventSource.cpp:
+        * page/PerformanceUserTiming.h:
+        * workers/AbstractWorker.cpp:
+        * workers/Worker.cpp:
+        * workers/WorkerGlobalScope.cpp:
+        * xml/XMLHttpRequest.cpp:
+        * xml/XMLHttpRequestUpload.cpp:
+
+2015-09-28  Chris Dumez  &lt;cdumez@apple.com&gt;
+
</ins><span class="cx">         Object.getOwnPropertyNames() does not return named properties
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=149562
</span><span class="cx">         &lt;rdar://problem/22879779&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcescpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/DerivedSources.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -152,7 +152,6 @@
</span><span class="cx"> #include &quot;JSElement.cpp&quot;
</span><span class="cx"> #include &quot;JSErrorEvent.cpp&quot;
</span><span class="cx"> #include &quot;JSEvent.cpp&quot;
</span><del>-#include &quot;JSEventException.cpp&quot;
</del><span class="cx"> #include &quot;JSEventSource.cpp&quot;
</span><span class="cx"> #include &quot;JSEventTarget.cpp&quot;
</span><span class="cx"> #include &quot;JSFile.cpp&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcesmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.make (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.make        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/DerivedSources.make        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -287,7 +287,6 @@
</span><span class="cx">     $(WebCore)/dom/EntityReference.idl \
</span><span class="cx">     $(WebCore)/dom/ErrorEvent.idl \
</span><span class="cx">     $(WebCore)/dom/Event.idl \
</span><del>-    $(WebCore)/dom/EventException.idl \
</del><span class="cx">     $(WebCore)/dom/EventListener.idl \
</span><span class="cx">     $(WebCore)/dom/EventTarget.idl \
</span><span class="cx">     $(WebCore)/dom/FocusEvent.idl \
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddblegacyLegacyRequestcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyRequest.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyRequest.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyRequest.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -31,7 +31,6 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(INDEXED_DATABASE)
</span><span class="cx"> 
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventListener.h&quot;
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;EventQueue.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddblegacyLegacyTransactioncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyTransaction.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyTransaction.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/Modules/indexeddb/legacy/LegacyTransaction.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -28,7 +28,6 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(INDEXED_DATABASE)
</span><span class="cx"> 
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventQueue.h&quot;
</span><span class="cx"> #include &quot;ExceptionCodePlaceholder.h&quot;
</span><span class="cx"> #include &quot;IDBDatabase.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebsocketsWebSocketcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/websockets/WebSocket.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/websockets/WebSocket.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/Modules/websockets/WebSocket.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -40,7 +40,6 @@
</span><span class="cx"> #include &quot;DOMWindow.h&quot;
</span><span class="cx"> #include &quot;Document.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventListener.h&quot;
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorevcxprojWebCorevcxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1860,20 +1860,6 @@
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><del>-    &lt;ClCompile Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventException.cpp&quot;&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='DebugSuffix|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-    &lt;/ClCompile&gt;
</del><span class="cx">     &lt;ClCompile Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventSource.cpp&quot;&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="lines">@@ -14226,20 +14212,6 @@
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><del>-    &lt;ClCompile Include=&quot;..\dom\EventException.cpp&quot;&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='DebugSuffix|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-      &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Production|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
-    &lt;/ClCompile&gt;
</del><span class="cx">     &lt;ClCompile Include=&quot;..\dom\EventListenerMap.cpp&quot;&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|Win32'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="cx">       &lt;ExcludedFromBuild Condition=&quot;'$(Configuration)|$(Platform)'=='Debug|x64'&quot;&gt;true&lt;/ExcludedFromBuild&gt;
</span><span class="lines">@@ -19890,7 +19862,6 @@
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSElement.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSErrorEvent.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEvent.h&quot; /&gt;
</span><del>-    &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventException.h&quot; /&gt;
</del><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventSource.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventTarget.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSFile.h&quot; /&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorevcxprojWebCorevcxprojfilters"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -3153,9 +3153,6 @@
</span><span class="cx">     &lt;ClCompile Include=&quot;..\dom\EventDispatcher.cpp&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;dom&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><del>-    &lt;ClCompile Include=&quot;..\dom\EventException.cpp&quot;&gt;
-      &lt;Filter&gt;dom&lt;/Filter&gt;
-    &lt;/ClCompile&gt;
</del><span class="cx">     &lt;ClCompile Include=&quot;..\dom\EventListenerMap.cpp&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;dom&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><span class="lines">@@ -5263,9 +5260,6 @@
</span><span class="cx">     &lt;ClCompile Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEvent.cpp&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><del>-    &lt;ClCompile Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventException.cpp&quot;&gt;
-      &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
-    &lt;/ClCompile&gt;
</del><span class="cx">     &lt;ClCompile Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventSource.cpp&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClCompile&gt;
</span><span class="lines">@@ -12670,9 +12664,6 @@
</span><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEvent.h&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClInclude&gt;
</span><del>-    &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventException.h&quot;&gt;
-      &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
-    &lt;/ClInclude&gt;
</del><span class="cx">     &lt;ClInclude Include=&quot;$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSEventSource.h&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;DerivedSources&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClInclude&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -2594,8 +2594,8 @@
</span><span class="cx">                 7C48A6D1191C9D6500026674 /* WebKitNamespace.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C48A6CF191C9D6500026674 /* WebKitNamespace.h */; };
</span><span class="cx">                 7C4902A218B825F8007D9298 /* DOMWheelEventInternal.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85989DCA0ACC8BBD00A0BC51 /* DOMWheelEventInternal.h */; };
</span><span class="cx">                 7C4C96DC1AD4483500365A50 /* JSReadableStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4C96D81AD4483500365A50 /* JSReadableStream.cpp */; };
</span><del>-                7C4C96DC1AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4C96D81AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp */; };
</del><span class="cx">                 7C4C96DC1AD4483500365A51 /* ReadableStreamBuiltins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4C96D81AD4483500365A51 /* ReadableStreamBuiltins.cpp */; };
</span><ins>+                7C4C96DC1AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4C96D81AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp */; };
</ins><span class="cx">                 7C4C96DD1AD4483500365A50 /* JSReadableStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4C96D91AD4483500365A50 /* JSReadableStream.h */; };
</span><span class="cx">                 7C4C96DE1AD4483500365A50 /* JSReadableStreamReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4C96DA1AD4483500365A50 /* JSReadableStreamReader.cpp */; };
</span><span class="cx">                 7C4C96DF1AD4483500365A50 /* JSReadableStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4C96DB1AD4483500365A50 /* JSReadableStreamReader.h */; };
</span><span class="lines">@@ -3717,7 +3717,6 @@
</span><span class="cx">                 978AD67414130A8D00C7CAE3 /* HTMLSpanElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978AD67114130A8D00C7CAE3 /* HTMLSpanElement.cpp */; };
</span><span class="cx">                 978AD67514130A8D00C7CAE3 /* HTMLSpanElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 978AD67214130A8D00C7CAE3 /* HTMLSpanElement.h */; };
</span><span class="cx">                 978D07B6145A0F030096908D /* FileException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978D07B5145A0F030096908D /* FileException.cpp */; };
</span><del>-                978D07BC145A0F560096908D /* EventException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978D07BB145A0F560096908D /* EventException.cpp */; };
</del><span class="cx">                 978D07BE145A0F6C0096908D /* DOMCoreException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978D07BD145A0F6C0096908D /* DOMCoreException.cpp */; };
</span><span class="cx">                 978D07CA145A10160096908D /* SVGException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978D07C9145A10160096908D /* SVGException.cpp */; };
</span><span class="cx">                 978D07CC145A102E0096908D /* XPathException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 978D07CB145A102E0096908D /* XPathException.cpp */; };
</span><span class="lines">@@ -5387,8 +5386,6 @@
</span><span class="cx">                 BC60D8F20D2A11E000B9918F /* ExceptionBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC60D8F00D2A11E000B9918F /* ExceptionBase.cpp */; };
</span><span class="cx">                 BC60D8F30D2A11E000B9918F /* ExceptionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60D8F10D2A11E000B9918F /* ExceptionBase.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 BC60D90C0D2A17CE00B9918F /* EventException.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60D9090D2A17CE00B9918F /* EventException.h */; };
</span><del>-                BC60D9BF0D2A269A00B9918F /* JSEventException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC60D9BD0D2A269A00B9918F /* JSEventException.cpp */; };
-                BC60D9C00D2A269A00B9918F /* JSEventException.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60D9BE0D2A269A00B9918F /* JSEventException.h */; };
</del><span class="cx">                 BC60D9C90D2A29E500B9918F /* XMLHttpRequestException.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60D9C70D2A29E500B9918F /* XMLHttpRequestException.h */; };
</span><span class="cx">                 BC60DA390D2A302800B9918F /* JSXMLHttpRequestException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC60DA370D2A302800B9918F /* JSXMLHttpRequestException.cpp */; };
</span><span class="cx">                 BC60DA3A0D2A302800B9918F /* JSXMLHttpRequestException.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60DA380D2A302800B9918F /* JSXMLHttpRequestException.h */; };
</span><span class="lines">@@ -9988,8 +9985,8 @@
</span><span class="cx">                 7C48A6CF191C9D6500026674 /* WebKitNamespace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitNamespace.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 7C48A6D2191C9D8E00026674 /* WebKitNamespace.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = WebKitNamespace.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 7C4C96D81AD4483500365A50 /* JSReadableStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSReadableStream.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                7C4C96D81AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CountQueuingStrategyBuiltins.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 7C4C96D81AD4483500365A51 /* ReadableStreamBuiltins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ReadableStreamBuiltins.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                7C4C96D81AD4483500365A52 /* CountQueuingStrategyBuiltins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CountQueuingStrategyBuiltins.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 7C4C96D91AD4483500365A50 /* JSReadableStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSReadableStream.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 7C4C96DA1AD4483500365A50 /* JSReadableStreamReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSReadableStreamReader.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 7C4C96DB1AD4483500365A50 /* JSReadableStreamReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSReadableStreamReader.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -11112,7 +11109,6 @@
</span><span class="cx">                 978AD67214130A8D00C7CAE3 /* HTMLSpanElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLSpanElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 978AD67314130A8D00C7CAE3 /* HTMLSpanElement.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HTMLSpanElement.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 978D07B5145A0F030096908D /* FileException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FileException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                978D07BB145A0F560096908D /* EventException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EventException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 978D07BD145A0F6C0096908D /* DOMCoreException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMCoreException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 978D07C9145A10160096908D /* SVGException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 978D07CB145A102E0096908D /* XPathException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XPathException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -13022,8 +13018,6 @@
</span><span class="cx">                 BC60D8F10D2A11E000B9918F /* ExceptionBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExceptionBase.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 BC60D9090D2A17CE00B9918F /* EventException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventException.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 BC60D90A0D2A17CE00B9918F /* EventException.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EventException.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                BC60D9BD0D2A269A00B9918F /* JSEventException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSEventException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                BC60D9BE0D2A269A00B9918F /* JSEventException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSEventException.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 BC60D9C70D2A29E500B9918F /* XMLHttpRequestException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMLHttpRequestException.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 BC60D9C80D2A29E500B9918F /* XMLHttpRequestException.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XMLHttpRequestException.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 BC60DA370D2A302800B9918F /* JSXMLHttpRequestException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSXMLHttpRequestException.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -20135,8 +20129,6 @@
</span><span class="cx">                                 2ECF7ADB10162B3800427DE7 /* JSErrorEvent.h */,
</span><span class="cx">                                 14E8378309F85D1C00B85AE4 /* JSEvent.cpp */,
</span><span class="cx">                                 14E8378D09F85D4F00B85AE4 /* JSEvent.h */,
</span><del>-                                BC60D9BD0D2A269A00B9918F /* JSEventException.cpp */,
-                                BC60D9BE0D2A269A00B9918F /* JSEventException.h */,
</del><span class="cx">                                 C6A703325C9D0B6CDCBC4D78 /* JSEventTarget.cpp */,
</span><span class="cx">                                 5FC7DC26CFE2563200B85AE5 /* JSEventTarget.h */,
</span><span class="cx">                                 B6D9D27A14EAC0860090D75E /* JSFocusEvent.cpp */,
</span><span class="lines">@@ -23450,7 +23442,6 @@
</span><span class="cx">                                 4138D3331244054800323D33 /* EventContext.h */,
</span><span class="cx">                                 418A06CF133C04D500CD379C /* EventDispatcher.cpp */,
</span><span class="cx">                                 418A06CE133C04D500CD379C /* EventDispatcher.h */,
</span><del>-                                978D07BB145A0F560096908D /* EventException.cpp */,
</del><span class="cx">                                 BC60D9090D2A17CE00B9918F /* EventException.h */,
</span><span class="cx">                                 BC60D90A0D2A17CE00B9918F /* EventException.idl */,
</span><span class="cx">                                 97665011144FAA4200F6BB51 /* EventFactory.h */,
</span><span class="lines">@@ -24421,7 +24412,6 @@
</span><span class="cx">                                 BC5EB9790E82069200B25965 /* CounterContent.h in Headers */,
</span><span class="cx">                                 BC5EB9510E82056B00B25965 /* CounterDirectives.h in Headers */,
</span><span class="cx">                                 9392F14C0AD1861B00691BD4 /* CounterNode.h in Headers */,
</span><del>-                                148B4FFE1B6904AA00C954E4 /* CountQueuingStrategy.h in Headers */,
</del><span class="cx">                                 D0B0556809C6700100307E43 /* CreateLinkCommand.h in Headers */,
</span><span class="cx">                                 514C766E0CE923A1007EF3CD /* Credential.h in Headers */,
</span><span class="cx">                                 3792917A1985EF3900F4B661 /* CredentialBase.h in Headers */,
</span><span class="lines">@@ -25618,7 +25608,6 @@
</span><span class="cx">                                 2ECF7ADD10162B3800427DE7 /* JSErrorEvent.h in Headers */,
</span><span class="cx">                                 F3D461491161D53200CA0D09 /* JSErrorHandler.h in Headers */,
</span><span class="cx">                                 14E8378E09F85D4F00B85AE4 /* JSEvent.h in Headers */,
</span><del>-                                BC60D9C00D2A269A00B9918F /* JSEventException.h in Headers */,
</del><span class="cx">                                 93B70D6A09EB0C7C009D8468 /* JSEventListener.h in Headers */,
</span><span class="cx">                                 E0FEF372B37C53EAC1C1FBEE /* JSEventSource.h in Headers */,
</span><span class="cx">                                 5FC7DC26CFE2563200B85AE4 /* JSEventTarget.h in Headers */,
</span><span class="lines">@@ -28629,7 +28618,6 @@
</span><span class="cx">                                 85031B410A44EFC700F992E0 /* Event.cpp in Sources */,
</span><span class="cx">                                 4138D3361244054800323D33 /* EventContext.cpp in Sources */,
</span><span class="cx">                                 418A06D1133C04D500CD379C /* EventDispatcher.cpp in Sources */,
</span><del>-                                978D07BC145A0F560096908D /* EventException.cpp in Sources */,
</del><span class="cx">                                 9766504F144FBFFE00F6BB51 /* EventFactory.cpp in Sources */,
</span><span class="cx">                                 93C09A810B064F00005ABD4D /* EventHandler.cpp in Sources */,
</span><span class="cx">                                 FE6938B61045D67E008EABB6 /* EventHandlerIOS.mm in Sources */,
</span><span class="lines">@@ -29197,7 +29185,6 @@
</span><span class="cx">                                 F3D461481161D53200CA0D09 /* JSErrorHandler.cpp in Sources */,
</span><span class="cx">                                 14E8378409F85D1C00B85AE4 /* JSEvent.cpp in Sources */,
</span><span class="cx">                                 BCEFAF4E0C317E6900FA81F6 /* JSEventCustom.cpp in Sources */,
</span><del>-                                BC60D9BF0D2A269A00B9918F /* JSEventException.cpp in Sources */,
</del><span class="cx">                                 93B70D6909EB0C7C009D8468 /* JSEventListener.cpp in Sources */,
</span><span class="cx">                                 E0FEF372B47C53EAC1C1FBEE /* JSEventSource.cpp in Sources */,
</span><span class="cx">                                 C6A703325C9D0B6CDCBC4D77 /* JSEventTarget.cpp in Sources */,
</span></span></pre></div>
<a id="trunkSourceWebCorebindingsgobjectWebKitDOMPrivatecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMPrivate.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -28,7 +28,6 @@
</span><span class="cx"> #include &quot;DOMObjectCache.h&quot;
</span><span class="cx"> #include &quot;Element.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventTarget.h&quot;
</span><span class="cx"> #include &quot;File.h&quot;
</span><span class="cx"> #include &quot;HTMLElement.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorebindingsjsJSExceptionBasecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/js/JSExceptionBase.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/js/JSExceptionBase.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/bindings/js/JSExceptionBase.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -27,7 +27,6 @@
</span><span class="cx"> #include &quot;JSExceptionBase.h&quot;
</span><span class="cx"> 
</span><span class="cx"> #include &quot;JSDOMCoreException.h&quot;
</span><del>-#include &quot;JSEventException.h&quot;
</del><span class="cx"> #include &quot;JSSQLException.h&quot;
</span><span class="cx"> #include &quot;JSSVGException.h&quot;
</span><span class="cx"> #include &quot;JSXMLHttpRequestException.h&quot;
</span><span class="lines">@@ -40,8 +39,6 @@
</span><span class="cx"> {
</span><span class="cx">     if (DOMCoreException* domException = JSDOMCoreException::toWrapped(value))
</span><span class="cx">         return reinterpret_cast&lt;ExceptionBase*&gt;(domException);
</span><del>-    if (EventException* eventException = JSEventException::toWrapped(value))
-        return reinterpret_cast&lt;ExceptionBase*&gt;(eventException);
</del><span class="cx">     if (XMLHttpRequestException* xmlHttpException = JSXMLHttpRequestException::toWrapped(value))
</span><span class="cx">         return reinterpret_cast&lt;ExceptionBase*&gt;(xmlHttpException);
</span><span class="cx">     if (SVGException* svgException = JSSVGException::toWrapped(value))
</span></span></pre></div>
<a id="trunkSourceWebCoredomDOMAllInOnecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/DOMAllInOne.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/DOMAllInOne.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/DOMAllInOne.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -79,7 +79,6 @@
</span><span class="cx"> #include &quot;Event.cpp&quot;
</span><span class="cx"> #include &quot;EventContext.cpp&quot;
</span><span class="cx"> #include &quot;EventDispatcher.cpp&quot;
</span><del>-#include &quot;EventException.cpp&quot;
</del><span class="cx"> #include &quot;EventListenerMap.cpp&quot;
</span><span class="cx"> #include &quot;EventNames.cpp&quot;
</span><span class="cx"> #include &quot;EventTarget.cpp&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoredomDOMExceptionsin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/DOMExceptions.in (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/DOMExceptions.in        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/DOMExceptions.in        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1,7 +1,6 @@
</span><span class="cx"> namespace=Exception
</span><span class="cx"> 
</span><span class="cx"> DOMCoreException
</span><del>-EventException
</del><span class="cx"> FileException
</span><span class="cx"> SQLException
</span><span class="cx"> SVGException
</span></span></pre></div>
<a id="trunkSourceWebCoredomEventExceptioncpp"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/dom/EventException.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventException.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/EventException.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -1,62 +0,0 @@
</span><del>-/*
- * 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:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  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.
- * 3.  Neither the name of Apple Inc. (&quot;Apple&quot;) 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 GOOGLE AND ITS CONTRIBUTORS &quot;AS IS&quot; 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 APPLE OR ITS 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 &quot;config.h&quot;
-#include &quot;EventException.h&quot;
-
-#include &quot;ExceptionCodeDescription.h&quot;
-
-namespace WebCore {
-
-static struct EventExceptionNameDescription {
-    const char* const name;
-    const char* const description;
-} eventExceptions[] = {
-    { &quot;UNSPECIFIED_EVENT_TYPE_ERR&quot;, &quot;The Event's type was not specified by initializing the event before the method was called.&quot; },
-    { &quot;DISPATCH_REQUEST_ERR&quot;, &quot;The Event object is already being dispatched.&quot; }
-};
-
-bool EventException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description)
-{
-    if (ec &lt; EventExceptionOffset || ec &gt; EventExceptionMax)
-        return false;
-
-    description-&gt;typeName = &quot;DOM Events&quot;;
-    description-&gt;code = ec - EventExceptionOffset;
-    description-&gt;type = EventExceptionType;
-
-    size_t tableSize = WTF_ARRAY_LENGTH(eventExceptions);
-    size_t tableIndex = ec - UNSPECIFIED_EVENT_TYPE_ERR;
-
-    description-&gt;name = tableIndex &lt; tableSize ? eventExceptions[tableIndex].name : 0;
-    description-&gt;description = tableIndex &lt; tableSize ? eventExceptions[tableIndex].description : 0;
-
-    return true;
-}
-
-} // namespace WebCore
</del></span></pre></div>
<a id="trunkSourceWebCoredomEventExceptionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/EventException.h (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventException.h        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/EventException.h        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -34,22 +34,6 @@
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><span class="cx"> class EventException : public ExceptionBase {
</span><del>-public:
-    static Ref&lt;EventException&gt; create(const ExceptionCodeDescription&amp; description)
-    {
-        return adoptRef(*new EventException(description));
-    }
-
-    static const int EventExceptionOffset = 100;
-    static const int EventExceptionMax = 199;
-
-    enum EventExceptionCode {
-        UNSPECIFIED_EVENT_TYPE_ERR = EventExceptionOffset,
-        DISPATCH_REQUEST_ERR
-    };
-
-    static bool initializeDescription(ExceptionCode, ExceptionCodeDescription*);
-
</del><span class="cx"> private:
</span><span class="cx">     explicit EventException(const ExceptionCodeDescription&amp; description)
</span><span class="cx">         : ExceptionBase(description)
</span></span></pre></div>
<a id="trunkSourceWebCoredomEventExceptionidl"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/EventException.idl (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventException.idl        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/EventException.idl        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -26,8 +26,11 @@
</span><span class="cx">  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</span><span class="cx">  */
</span><span class="cx"> 
</span><ins>+#if defined(LANGUAGE_OBJECTIVE_C) &amp;&amp; LANGUAGE_OBJECTIVE_C
+
</ins><span class="cx"> // Introduced in DOM Level 2:
</span><span class="cx"> [
</span><ins>+    NoInterfaceObject,
</ins><span class="cx">     DoNotCheckConstants,
</span><span class="cx">     ImplementationLacksVTable,
</span><span class="cx"> ] exception EventException {
</span><span class="lines">@@ -36,13 +39,9 @@
</span><span class="cx">     readonly attribute DOMString        name;
</span><span class="cx">     readonly attribute DOMString        message;
</span><span class="cx"> 
</span><del>-#if defined(LANGUAGE_JAVASCRIPT) &amp;&amp; LANGUAGE_JAVASCRIPT
-    // Override in a Mozilla compatible format
-    [NotEnumerable] DOMString toString();
-#endif
-
</del><span class="cx">     // EventExceptionCode
</span><span class="cx">     const unsigned short UNSPECIFIED_EVENT_TYPE_ERR = 0;
</span><span class="cx">     const unsigned short DISPATCH_REQUEST_ERR = 1;
</span><span class="cx"> };
</span><span class="cx"> 
</span><ins>+#endif
</ins></span></pre></div>
<a id="trunkSourceWebCoredomEventListenerMapcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/EventListenerMap.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventListenerMap.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/EventListenerMap.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -34,7 +34,6 @@
</span><span class="cx"> #include &quot;EventListenerMap.h&quot;
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventTarget.h&quot;
</span><span class="cx"> #include &lt;wtf/MainThread.h&gt;
</span><span class="cx"> #include &lt;wtf/NeverDestroyed.h&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoredomEventTargetcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/EventTarget.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventTarget.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/EventTarget.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx"> #include &quot;config.h&quot;
</span><span class="cx"> #include &quot;EventTarget.h&quot;
</span><span class="cx"> 
</span><del>-#include &quot;EventException.h&quot;
</del><ins>+#include &quot;ExceptionCode.h&quot;
</ins><span class="cx"> #include &quot;InspectorInstrumentation.h&quot;
</span><span class="cx"> #include &quot;ScriptController.h&quot;
</span><span class="cx"> #include &quot;WebKitAnimationEvent.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoredomMessagePortcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/MessagePort.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/MessagePort.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/MessagePort.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -28,7 +28,7 @@
</span><span class="cx"> #include &quot;MessagePort.h&quot;
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Document.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><ins>+#include &quot;ExceptionCode.h&quot;
</ins><span class="cx"> #include &quot;MessageEvent.h&quot;
</span><span class="cx"> #include &quot;SecurityOrigin.h&quot;
</span><span class="cx"> #include &quot;WorkerGlobalScope.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoredomNodecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/Node.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/Node.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/dom/Node.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -39,7 +39,6 @@
</span><span class="cx"> #include &quot;ElementRareData.h&quot;
</span><span class="cx"> #include &quot;ElementTraversal.h&quot;
</span><span class="cx"> #include &quot;EventDispatcher.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventHandler.h&quot;
</span><span class="cx"> #include &quot;FrameView.h&quot;
</span><span class="cx"> #include &quot;HTMLCollection.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreloaderappcacheDOMApplicationCachecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/loader/appcache/DOMApplicationCache.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/loader/appcache/DOMApplicationCache.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/loader/appcache/DOMApplicationCache.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -30,7 +30,6 @@
</span><span class="cx"> #include &quot;Document.h&quot;
</span><span class="cx"> #include &quot;DocumentLoader.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventListener.h&quot;
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorepageDOMWindowcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/DOMWindow.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/DOMWindow.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/page/DOMWindow.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -54,7 +54,6 @@
</span><span class="cx"> #include &quot;DocumentLoader.h&quot;
</span><span class="cx"> #include &quot;Editor.h&quot;
</span><span class="cx"> #include &quot;Element.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventHandler.h&quot;
</span><span class="cx"> #include &quot;EventListener.h&quot;
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorepageEventSourcecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/EventSource.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/EventSource.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/page/EventSource.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -38,7 +38,6 @@
</span><span class="cx"> #include &quot;Dictionary.h&quot;
</span><span class="cx"> #include &quot;Document.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;Frame.h&quot;
</span><span class="cx"> #include &quot;HTTPHeaderNames.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorepagePerformanceUserTimingh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/PerformanceUserTiming.h (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/PerformanceUserTiming.h        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/page/PerformanceUserTiming.h        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -28,7 +28,6 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(USER_TIMING)
</span><span class="cx"> 
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;Performance.h&quot;
</span><span class="cx"> #include &quot;PerformanceTiming.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreworkersAbstractWorkercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/workers/AbstractWorker.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/workers/AbstractWorker.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/workers/AbstractWorker.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -35,7 +35,6 @@
</span><span class="cx"> #include &quot;ContentSecurityPolicy.h&quot;
</span><span class="cx"> #include &quot;ErrorEvent.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;InspectorInstrumentation.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreworkersWorkercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/workers/Worker.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/workers/Worker.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/workers/Worker.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -32,7 +32,6 @@
</span><span class="cx"> #include &quot;DOMWindow.h&quot;
</span><span class="cx"> #include &quot;CachedResourceLoader.h&quot;
</span><span class="cx"> #include &quot;Document.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;EventListener.h&quot;
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreworkersWorkerGlobalScopecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/workers/WorkerGlobalScope.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/workers/WorkerGlobalScope.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/workers/WorkerGlobalScope.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -35,7 +35,6 @@
</span><span class="cx"> #include &quot;DOMWindow.h&quot;
</span><span class="cx"> #include &quot;ErrorEvent.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;InspectorConsoleInstrumentation.h&quot;
</span><span class="cx"> #include &quot;MessagePort.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorexmlXMLHttpRequestcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/xml/XMLHttpRequest.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/xml/XMLHttpRequest.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/xml/XMLHttpRequest.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -30,7 +30,6 @@
</span><span class="cx"> #include &quot;DOMFormData.h&quot;
</span><span class="cx"> #include &quot;DOMImplementation.h&quot;
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;File.h&quot;
</span><span class="cx"> #include &quot;HTMLDocument.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorexmlXMLHttpRequestUploadcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/xml/XMLHttpRequestUpload.cpp (190280 => 190281)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/xml/XMLHttpRequestUpload.cpp        2015-09-28 17:43:49 UTC (rev 190280)
+++ trunk/Source/WebCore/xml/XMLHttpRequestUpload.cpp        2015-09-28 18:26:31 UTC (rev 190281)
</span><span class="lines">@@ -27,7 +27,6 @@
</span><span class="cx"> #include &quot;XMLHttpRequestUpload.h&quot;
</span><span class="cx"> 
</span><span class="cx"> #include &quot;Event.h&quot;
</span><del>-#include &quot;EventException.h&quot;
</del><span class="cx"> #include &quot;XMLHttpRequestProgressEvent.h&quot;
</span><span class="cx"> #include &lt;wtf/Assertions.h&gt;
</span><span class="cx"> #include &lt;wtf/text/AtomicString.h&gt;
</span></span></pre>
</div>
</div>

</body>
</html>