frontend/.pnpm-store/v3/files/c9/b6bfa5638fb9d6a5803ebe09cdebe15f7615df4a083898e6566582ed84a6476375f55af621f6f80c3329443b08d2bab611d279f72429b176f2ba7ae1f79ba9

12 lines
340 B
Plaintext

// last-child pseudo selector
// https://github.com/Modernizr/Modernizr/pull/304
Modernizr.addTest('lastchild', function(){
return Modernizr.testStyles("#modernizr div {width:100px} #modernizr :last-child{width:200px;display:block}", function (elem) {
return elem.lastChild.offsetWidth > elem.firstChild.offsetWidth;
}, 2);
});