brackets-archive / bracketsIssues

Archive of issues in brackets.
0 stars 0 forks source link

[CLOSED] CSSUtils.getInfoAtPos() ignores prefixes #6220

Open core-ai-bot opened 3 years ago

core-ai-bot commented 3 years ago

Issue by redmunds Thursday Feb 13, 2014 at 18:44 GMT Originally opened as https://github.com/adobe/brackets/issues/6861


Recipe

    .test {

    }
  1. In a CSS stylesheet, start with rule above
  2. Put cursor inside rule and type -xxx-
  3. Then type tr and hit Enter to select transform

Results: a. After step 2, the list of CSS properties is displayed b. After step 3, the values for CSS transform property are displayed c. transform has CSS property syntax coloring, but -xxx- does not

Expected: should not show any CSS property hint after step 2 and step 3.

core-ai-bot commented 3 years ago

Comment by redmunds Thursday Feb 13, 2014 at 18:45 GMT


There are already unit test in pull request #6824. Assigning to@RaymondLim. Low Priority.

core-ai-bot commented 3 years ago

Comment by RaymondLim Tuesday Mar 25, 2014 at 18:44 GMT


Raising it to medium priority and nominating it for brackets 1.0 because fixing it will also fix #7314. In order to fix this we need to scan backwards past any punctuation character until we hit a whitespace.

core-ai-bot commented 3 years ago

Comment by redmunds Tuesday Mar 25, 2014 at 20:46 GMT


In addition to whitespace, could be ; or {.

core-ai-bot commented 3 years ago

Comment by JeffryBooher Tuesday Apr 01, 2014 at 17:35 GMT


@RaymondLim it's not clear what the expected results are from the description. Can you add a note about what should happen and when?

core-ai-bot commented 3 years ago

Comment by RaymondLim Tuesday Apr 01, 2014 at 19:34 GMT


@JeffryBooher I added expected steps to Randy's description. CSS code hint should not show anything for any prefixed (both valid and invalid). This bug is reporting for false positive. For valid vendor prefixed properties to show up in CSS code hints, we need to implement this user story https://trello.com/c/82j3IeJn/702-css-vendor-prefixifier

core-ai-bot commented 3 years ago

Comment by JeffryBooher Tuesday Apr 01, 2014 at 23:12 GMT


FBNC@redmunds

core-ai-bot commented 3 years ago

Comment by redmunds Sunday Apr 06, 2014 at 19:06 GMT


Confirmed. Closing.