Home | History | Annotate | Download | only in qwebframe

Lines Matching refs:intProperty

59     Q_PROPERTY(int intProperty READ intProperty WRITE setIntProperty)
121 int intProperty() const {
777 QVariant ret = evalJSV("myObject.intProperty", type);
782 QCOMPARE(evalJS("myObject.intProperty === 123.0"), sTrue);
849 QCOMPARE(evalJS("myObject.intProperty == 456"), sTrue);
851 QCOMPARE(evalJS("myObject.intProperty == 789"), sTrue);
867 QCOMPARE(evalJS("myObject.intProperty = 123"), QLatin1String("123"));
868 QCOMPARE(evalJS("myObject.intProperty == 123"), sTrue);
869 QCOMPARE(m_myObject->intProperty(), 123);
870 QCOMPARE(evalJS("myObject.intProperty = 'ciao!';"
871 "myObject.intProperty == 0"), sTrue);
872 QCOMPARE(m_myObject->intProperty(), 0);
873 QCOMPARE(evalJS("myObject.intProperty = '123';"
874 "myObject.intProperty == 123"), sTrue);
875 QCOMPARE(m_myObject->intProperty(), 123);
930 QCOMPARE(evalJS("delete myObject.intProperty"), sFalse);
931 QCOMPARE(evalJS("myObject.intProperty == 123"), sTrue);
2080 evalJS("bar.intProperty = 123;");
2081 QCOMPARE(qobj->intProperty(), 123);