Skip to content

Commit 5b2a127

Browse files
committed
Some more test for MDN data
1 parent 94d1329 commit 5b2a127

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/test/css/completion.test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,14 @@ suite('CSS - Completion', () => {
208208
]
209209
});
210210
});
211+
test('MDN properties', function (): any {
212+
testCompletionFor('body { a|', {
213+
items: [
214+
{ label: 'appearance', resultText: 'body { appearance: ' },
215+
{ label: 'azimuth', resultText: 'body { azimuth: ' }
216+
]
217+
});
218+
});
211219
test('values', function (): any {
212220
testCompletionFor('body { vertical-align:| bottom;}', {
213221
items: [

src/test/css/lint.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ suite('CSS - Lint', () => {
106106
assertRuleSet('selector { -moz-box-shadow: "rest is missing" }', Rules.UnknownVendorSpecificProperty, Rules.IncludeStandardPropertyWhenUsingVendorPrefix);
107107
assertRuleSet('selector { box-shadow: none }'); // no error
108108
assertRuleSet('selector { box-property: "rest is missing" }', Rules.UnknownProperty);
109-
110109
});
111110

112111
test('box model', function () {

0 commit comments

Comments
 (0)