Details
-
Type:
Bug
-
Status: Closed
-
Priority:
High
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Aptana Studio 3.0.7
-
Component/s: Content Assist, CSS
-
Labels:None
Description
In the checked in tests, a few tests are commented out with FIXMEs. Those are some cases in which it appears the CA processor is doing the wrong thing and it impedes the typing experience. The cases are listed below:
// assertCompletionCorrect("p,| {}", '\t', "table", "p,table {}");
|
|
// FIXME: This should work. Currently inserting as html:lang()en, for example
|
// assertCompletionCorrect("html:lang()| { }", '\t', 0, null, "html:lang() { }", null);
|
|
// FIXME: This should work
|
// assertCompletionCorrect("p>| {}", '\t', "table", "p>table {}");
|
|
// FIXME: currently reports pseduo-elements as proposals _before_ the colon
|
// assertCompletionCorrect("p {} |:", '\t', "div", "p {} div:");
|