Files
openlayers/test/spec/ol
Tim Schaub a185fc963d Tests for get/setStyleFunction
It would be nice to also test the following:

    it('does not return user set property with the same name', function() {
      var feature = new ol.Feature({
        whatever: 'some value',
        styleFunction: 'another value'
      });
      expect(feature.getStyleFunction()).to.be(undefined);
    });

Unfortunately, in uncompiled code (or if we export `setStyleFunction`) this does not work.  Same goes for user set `id` properties (this will set our internal `id_` property).  See #1672.
2014-02-13 10:25:17 -07:00
..
2014-02-06 12:59:38 +01:00
2014-02-13 10:25:16 -07:00
2014-02-06 12:59:39 +01:00
2014-02-06 12:48:51 +01:00
2013-12-09 16:37:18 +01:00
2013-05-06 15:35:40 +02:00
2014-02-13 10:25:17 -07:00
2013-03-22 17:25:31 +01:00
2013-07-09 09:30:45 +02:00