Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 219992
Collapse All | Expand All

(-)src/org/eclipse/wst/xml/ui/internal/contentassist/AbstractXMLCompletionProposalComputer.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2010 IBM Corporation and others.
2
 * Copyright (c) 2012 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 903-909 Link Here
903
		}
903
		}
904
		else {
904
		else {
905
			// The offset is NOT at the beginning of the region
905
			// The offset is NOT at the beginning of the region
906
			if (offset > sdRegion.getStartOffset(region) + region.getTextLength()) {
906
			if ((region.getType() != DOMRegionContext.XML_TAG_ATTRIBUTE_EQUALS) &&(offset > sdRegion.getStartOffset(region) + region.getTextLength())) { //attached XML_TAG_ATTRIBUTE_EQUALS filter due to #bug219992
907
				// Is the offset within the whitespace after the text in this
907
				// Is the offset within the whitespace after the text in this
908
				// region?
908
				// region?
909
				// If so, use the next region
909
				// If so, use the next region

Return to bug 219992