ui-ace icon indicating copy to clipboard operation
ui-ace copied to clipboard

Update Ace Editor Version

Open aaronmallen opened this issue 9 years ago • 0 comments

Issue:

  • Editor allows valid css tags without semi-colon (in any line).
  • Editor allows technically correct syntax, but invalid css tags.

Expected Result:

  • Editor should provide error annotation for css tags without semicolon (except for last property).
  • Editor should provide error annotation for invalid css tags,although technically correct (invalid css property/values are in black color)

The following invalid CSS does not create an error annotation:

body {
    background-color: aqua;
    font-size: 18px;
    font-style: italic;
    asdf: asdfasdfasdfasdfdsdsg
    dsfdsfdsfdsfdsf
    dsdfsdfdsf
    dsfsdfsdf
    dfdsf
    }

The following invalid CSS does not create an error annotation:

body {
    background-color: aqua;
    font-size: 18px
    font-style: italic;
    }

Please see Ace#2907 for further information.

aaronmallen avatar Aug 17 '16 15:08 aaronmallen