--TEST-- substringData() edge cases --EXTENSIONS-- dom --SKIPIF-- --FILE-- createComment("foobarbaz"); try { var_dump($comment->substringData(0, 2**31+1)); } catch (DOMException $e) { echo $e->getMessage(), "\n"; } try { var_dump($comment->substringData(2**31+1, 0)); } catch (DOMException $e) { echo $e->getMessage(), "\n"; } try { var_dump($comment->substringData(100, 0)); } catch (DOMException $e) { echo $e->getMessage(), "\n"; } echo $dom->saveHtml($comment), "\n"; ?> --EXPECT-- Index Size Error Index Size Error Index Size Error