mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
20 lines
571 B
JavaScript
20 lines
571 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS text-align-last",
|
|
"property": "textalignlast",
|
|
"caniuse": "css-text-align-last",
|
|
"tags": ["css"],
|
|
"knownBugs": ["IE does not support the 'start' or 'end' values."],
|
|
"notes": [{
|
|
"name": "Quirksmode",
|
|
"href": "https://www.quirksmode.org/css/text/textalignlast.html"
|
|
}, {
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/CSS/text-align-last"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('textalignlast', testAllProps('textAlignLast'));
|
|
});
|