summaryrefslogtreecommitdiff
path: root/test/select-no-nd.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-05-08 14:12:19 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-11-19 14:30:07 +0000
commitd91bf786c42bd86a9d9159a6cd8e14e04ee29f39 (patch)
tree88e2d735ba64a8adbd1057c1fa0c2e2885f5306f /test/select-no-nd.c
parentcd5aa421206501a8651baa5cb4d19a96c4374cbe (diff)
downloadlibcss-d91bf786c42bd86a9d9159a6cd8e14e04ee29f39.tar.gz
libcss-d91bf786c42bd86a9d9159a6cd8e14e04ee29f39.tar.bz2
Remove option to support not storing data on DOM nodes.
It was complicating lifetimes and ownership.
Diffstat (limited to 'test/select-no-nd.c')
-rw-r--r--test/select-no-nd.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/select-no-nd.c b/test/select-no-nd.c
deleted file mode 100644
index 8eb3735..0000000
--- a/test/select-no-nd.c
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#include "select-common.c"
-
-static css_error get_libcss_node_data(void *pw, void *n,
- void **libcss_node_data)
-{
- UNUSED(pw);
- UNUSED(n);
-
- /* Test case were node data is deleted, by not passing any node data */
- *libcss_node_data = NULL;
-
- return CSS_OK;
-}