Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornsandonato2009-11-24 16:20:09 +0000
committernsandonato2009-11-24 16:20:09 +0000
commit0e8d27cd72211994860e3bcabbbec88649ceeedc (patch)
tree0fa847d91b0523e42eaba4ea79d3dbdc72af783b /bundles/org.eclipse.wst.html.core/src
parentdeeeee8cac34cef81e8525bd1c0f83bc07d9f76b (diff)
downloadwebtools.sourceediting-0e8d27cd72211994860e3bcabbbec88649ceeedc.tar.gz
webtools.sourceediting-0e8d27cd72211994860e3bcabbbec88649ceeedc.tar.xz
webtools.sourceediting-0e8d27cd72211994860e3bcabbbec88649ceeedc.zip
[209737] onload, onunload, onblur, onfocus scripting events are not considered script event partitions
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/text/StructuredTextPartitionerForHTML.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/text/StructuredTextPartitionerForHTML.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/text/StructuredTextPartitionerForHTML.java
index 45875d4865..b6c0c4d2b0 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/text/StructuredTextPartitionerForHTML.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/text/StructuredTextPartitionerForHTML.java
@@ -51,7 +51,12 @@ public class StructuredTextPartitionerForHTML extends StructuredTextPartitionerF
HTML40Namespace.ATTR_NAME_ONKEYPRESS,
HTML40Namespace.ATTR_NAME_ONKEYDOWN,
HTML40Namespace.ATTR_NAME_ONKEYUP,
- HTML40Namespace.ATTR_NAME_ONHELP};
+ HTML40Namespace.ATTR_NAME_ONHELP,
+ HTML40Namespace.ATTR_NAME_ONBLUR,
+ HTML40Namespace.ATTR_NAME_ONFOCUS,
+ HTML40Namespace.ATTR_NAME_ONLOAD,
+ HTML40Namespace.ATTR_NAME_ONUNLOAD,
+ HTML40Namespace.ATTR_NAME_ONSUBMIT};
public StructuredTextPartitionerForHTML() {
super();

Back to the top