mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-12-18 19:10:54 +00:00
e5431a1c0b
We currently require support for IntersectionObserver. which is supported on Edge >= 15 (15 has partial support), Firefox >55, Chrome >58, Safari 12.1, Opera >=38, iOS Safari >=12.2, Android 100 Full ES6 is supported in Edge >=15, Firefox >=54, Chrome >=51, Safari >=10, Opera >=38, iOS Safari >=10, so such a change would only drop support for Edge 15 and Firefox 54. CSS.escape is guaranteed in all these browsers according to caniuse, with the only discrepancy being the Edge browser (versions 16-18) so it is also suggested we remove support for those browsers. Firefox 54 accounts for 0.0026% of page views Edge 15-18 accounts for 0.069% of page views Bug: T306355 Change-Id: Id2987e3456607b610c38da9ee157a026d1d00ada
36 lines
929 B
JavaScript
36 lines
929 B
JavaScript
( function () {
|
|
'use strict';
|
|
|
|
const CardModel = require( '../../resources/ext.relatedArticles.readMore/CardModel.js' );
|
|
|
|
QUnit.module( 'ext.relatedArticles.cards/CardModel' );
|
|
|
|
QUnit.test( '#set', function ( assert ) {
|
|
let model = new CardModel( {} );
|
|
|
|
model.on( 'change', function ( attributes ) {
|
|
assert.strictEqual(
|
|
attributes.foo,
|
|
'bar',
|
|
'It emits an event with the attribute that has changed.'
|
|
);
|
|
} );
|
|
model.set( 'foo', 'bar' );
|
|
|
|
model = new CardModel( {} );
|
|
model.on( 'change', function () {
|
|
assert.ok( false, 'It doesn\'t emit an event when silenced.' );
|
|
} );
|
|
|
|
model.set( 'foo', 'bar', true );
|
|
} );
|
|
|
|
QUnit.test( '#get', function ( assert ) {
|
|
const model = new CardModel( {} );
|
|
|
|
model.set( 'foo', 'bar' );
|
|
assert.strictEqual( model.get( 'foo' ), 'bar', 'Got the correct value.' );
|
|
assert.strictEqual( model.get( 'x' ), undefined, 'Got the correct value.' );
|
|
} );
|
|
}() );
|