├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── analysis_options.yaml ├── doc └── Comparison.md ├── lib ├── dquery.dart └── src │ ├── cookie.dart │ ├── css.dart │ ├── data.dart │ ├── dimension.dart │ ├── dquery_api.dart │ ├── dquery_impl.dart │ ├── event.dart │ ├── manipulation.dart │ ├── offset.dart │ ├── selector.dart │ ├── traversing.dart │ └── util │ └── util.dart ├── pubspec.yaml ├── testcase ├── pubspec.yaml └── web │ ├── core-01-html.dart │ ├── core-01-html.html │ ├── css-01.dart │ ├── css-01.html │ ├── data-01.dart │ ├── data-01.html │ ├── event-01.dart │ ├── event-01.html │ ├── event-02-blur.dart │ ├── event-02-blur.html │ ├── event-03-namespace.dart │ ├── event-03-namespace.html │ ├── event-04-massive.dart │ ├── event-04-massive.html │ ├── event-05-on-off.dart │ ├── event-05-on-off.html │ ├── index.html │ ├── manipulation-01.dart │ ├── manipulation-01.html │ ├── manipulation-02.dart │ ├── manipulation-02.html │ ├── offset-01.dart │ └── offset-01.html └── tool ├── d2d ├── d2j └── lib ├── exclude.lst └── html.sed /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /doc/Comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/doc/Comparison.md -------------------------------------------------------------------------------- /lib/dquery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/dquery.dart -------------------------------------------------------------------------------- /lib/src/cookie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/cookie.dart -------------------------------------------------------------------------------- /lib/src/css.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/css.dart -------------------------------------------------------------------------------- /lib/src/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/data.dart -------------------------------------------------------------------------------- /lib/src/dimension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/dimension.dart -------------------------------------------------------------------------------- /lib/src/dquery_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/dquery_api.dart -------------------------------------------------------------------------------- /lib/src/dquery_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/dquery_impl.dart -------------------------------------------------------------------------------- /lib/src/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/event.dart -------------------------------------------------------------------------------- /lib/src/manipulation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/manipulation.dart -------------------------------------------------------------------------------- /lib/src/offset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/offset.dart -------------------------------------------------------------------------------- /lib/src/selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/selector.dart -------------------------------------------------------------------------------- /lib/src/traversing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/traversing.dart -------------------------------------------------------------------------------- /lib/src/util/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/lib/src/util/util.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /testcase/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/pubspec.yaml -------------------------------------------------------------------------------- /testcase/web/core-01-html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/core-01-html.dart -------------------------------------------------------------------------------- /testcase/web/core-01-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/core-01-html.html -------------------------------------------------------------------------------- /testcase/web/css-01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/css-01.dart -------------------------------------------------------------------------------- /testcase/web/css-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/css-01.html -------------------------------------------------------------------------------- /testcase/web/data-01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/data-01.dart -------------------------------------------------------------------------------- /testcase/web/data-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/data-01.html -------------------------------------------------------------------------------- /testcase/web/event-01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-01.dart -------------------------------------------------------------------------------- /testcase/web/event-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-01.html -------------------------------------------------------------------------------- /testcase/web/event-02-blur.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-02-blur.dart -------------------------------------------------------------------------------- /testcase/web/event-02-blur.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-02-blur.html -------------------------------------------------------------------------------- /testcase/web/event-03-namespace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-03-namespace.dart -------------------------------------------------------------------------------- /testcase/web/event-03-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-03-namespace.html -------------------------------------------------------------------------------- /testcase/web/event-04-massive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-04-massive.dart -------------------------------------------------------------------------------- /testcase/web/event-04-massive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-04-massive.html -------------------------------------------------------------------------------- /testcase/web/event-05-on-off.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-05-on-off.dart -------------------------------------------------------------------------------- /testcase/web/event-05-on-off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/event-05-on-off.html -------------------------------------------------------------------------------- /testcase/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/index.html -------------------------------------------------------------------------------- /testcase/web/manipulation-01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/manipulation-01.dart -------------------------------------------------------------------------------- /testcase/web/manipulation-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/manipulation-01.html -------------------------------------------------------------------------------- /testcase/web/manipulation-02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/manipulation-02.dart -------------------------------------------------------------------------------- /testcase/web/manipulation-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/manipulation-02.html -------------------------------------------------------------------------------- /testcase/web/offset-01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/offset-01.dart -------------------------------------------------------------------------------- /testcase/web/offset-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/testcase/web/offset-01.html -------------------------------------------------------------------------------- /tool/d2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/tool/d2d -------------------------------------------------------------------------------- /tool/d2j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/tool/d2j -------------------------------------------------------------------------------- /tool/lib/exclude.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/tool/lib/exclude.lst -------------------------------------------------------------------------------- /tool/lib/html.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikulo/dquery/HEAD/tool/lib/html.sed --------------------------------------------------------------------------------